    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #f3f4f6;
      color: #1f2937;
      line-height: 1.6;
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .header {
      background: linear-gradient(135deg, #2570a8, #2B7AB8);
      color: white;
      padding: 40px 30px;
      text-align: center;
    }

    .header h1 {
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .header .logo {
      margin-bottom: 20px;
    }

    .header .logo img {
      height: 60px;
    }

    .content {
      padding: 40px 30px;
    }

    .intro-text {
      font-size: 15px;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 30px;
      text-align: justify;
    }

    .more-info {
      color: #2B7AB8;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 30px;
      transition: color 0.3s ease;
    }

    .more-info:hover {
      color: #1f5f95;
      text-decoration: underline;
    }

    .action-buttons {
      display: flex;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: #2B7AB8;
      color: white;
      border: none;
      padding: 14px 30px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      min-width: 200px;
    }

    .btn-primary:hover {
      background: #2570a8;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(43, 122, 184, 0.3);
    }

    .section-title {
      font-size: 22px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 2px solid #e5e7eb;
    }

    .cookie-category {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .cookie-category:hover {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .cookie-header {
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
    }

    .cookie-header h3 {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

    .cookie-status {
      font-size: 13px;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: 600;
      margin-right: 15px;
    }

    .status-always {
      background: #d1fae5;
      color: #065f46;
    }

    .toggle-switch {
      position: relative;
      width: 50px;
      height: 26px;
      background: #cbd5e1;
      border-radius: 13px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .toggle-switch.active {
      background: #2B7AB8;
    }

    .toggle-switch.disabled {
      background: #2B7AB8;
      opacity: 0.6;
      cursor: not-allowed;
    }

    .toggle-slider {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .toggle-switch.active .toggle-slider,
    .toggle-switch.disabled .toggle-slider {
      transform: translateX(24px);
    }

    .cookie-description {
      padding: 0 20px 20px 20px;
      color: #6b7280;
      font-size: 14px;
      line-height: 1.6;
      display: none;
    }

    .cookie-category.expanded .cookie-description {
      display: block;
    }

    .expand-icon {
      transition: transform 0.3s ease;
      color: #6b7280;
      font-size: 20px;
    }

    .cookie-category.expanded .expand-icon {
      transform: rotate(180deg);
    }

    .confirm-button {
      width: 100%;
      background: #10b981;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 30px;
      transition: all 0.3s ease;
    }

    .confirm-button:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .back-link {
      display: inline-block;
      color: #6b7280;
      text-decoration: none;
      margin-bottom: 20px;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .back-link:hover {
      color: #2B7AB8;
    }

    @media (max-width: 768px) {
      .content {
        padding: 30px 20px;
      }

      .header {
        padding: 30px 20px;
      }

      .header h1 {
        font-size: 24px;
      }

      .action-buttons {
        flex-direction: column;
      }

      .btn-primary {
        width: 100%;
      }

      .cookie-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }

      .cookie-header h3 {
        width: 100%;
      }

      .cookie-status {
        margin-right: 0;
      }
    }
