@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

    :root {
      --primary: #8B5CF6;
      --secondary: #A78BFA;
      --accent: #C4B5FD;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #1f2937;
      background: #ffffff;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.6s ease-out forwards;
    }

    .fade-in {
      animation: fadeIn 0.6s ease-out forwards;
    }

    .btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: 10px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 16px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .btn-secondary {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: white;
    }

    .card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      transition: all 0.3s ease;
      border: 1px solid #f3f4f6;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 16px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-title p {
      font-size: 18px;
      color: #6b7280;
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      border-radius: 12px;
      margin-bottom: 16px;
      border: 2px solid #f3f4f6;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--primary);
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      background: none;
      border: none;
      text-align: left;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #1f2937;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 24px;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 24px 20px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-icon {
      transition: transform 0.3s ease;
      color: var(--primary);
    }

    @media (max-width: 768px) {
      section {
        padding: 50px 0;
      }

      .section-title h2 {
        font-size: 32px;
      }

      .btn {
        padding: 12px 24px;
        font-size: 14px;
      }
    }

    /* Legal Page Styles */
    .legal-page {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .legal-content {
      line-height: 1.8;
    }

    .legal-content h1 {
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .legal-content h2 {
      font-size: 1.75rem;
      font-weight: 800;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .legal-content h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .legal-content p {
      margin-bottom: 1.25rem;
      color: #374151;
      font-size: 1rem;
    }

    .legal-content ul,
    .legal-content ol {
      margin: 1.5rem 0;
      padding-left: 2rem;
    }

    .legal-content li {
      margin-bottom: 0.75rem;
      color: #374151;
    }

    .legal-content strong {
      font-weight: 700;
      color: #1f2937;
    }

    .legal-section {
      background: #f9fafb;
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      border-left: 4px solid var(--primary);
    }

    .legal-highlight {
      background: #fef3c7;
      padding: 1.25rem;
      border-radius: 8px;
      border-left: 4px solid #f59e0b;
      margin: 1.5rem 0;
    }

    .legal-date {
      color: #6b7280;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .legal-toc {
      background: #f3f4f6;
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 2rem;
    }

    .legal-toc ul {
      list-style: none;
      padding: 0;
    }

    .legal-toc li {
      padding: 0.5rem 0;
    }

    .legal-toc a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }

    .legal-toc a:hover {
      color: var(--secondary);
      padding-left: 8px;
    }

    @media (max-width: 768px) {
      .legal-content h1 {
        font-size: 2rem;
      }

      .legal-content h2 {
        font-size: 1.5rem;
      }
    }