body {
      font-family: 'Segoe UI', sans-serif;
      background: #f4f6f8;
      margin: 0;
      padding: 0;
      color: #333;
    }

    .cookies-container {
      max-width: 800px;
      margin: 50px auto;
      background: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      animation: fadeIn 1s ease-in-out;
    }

    h2 {
      color: #0078D4;
      font-size: 28px;
      margin-bottom: 20px;
      border-bottom: 2px solid #0078D4;
      padding-bottom: 10px;
    }

    h3 {
      color: #005fa3;
      font-size: 20px;
      margin-top: 30px;
    }

    p, ul {
      font-size: 16px;
      line-height: 1.6;
    }

    ul {
      padding-left: 20px;
    }

    li {
      margin-bottom: 8px;
    }

    a {
      color: #0078D4;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }