
    :root {
      --primary: #2b6cb0;
      --accent: #a0d8ef;
      --text: #333333;
      --bg: #f8fafc;
      --card-bg: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.8;
      padding: 40px 20px;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: var(--primary);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .subtitle {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 40px;
    }

    .page-title {
      font-size: 1.5rem;
      color: var(--primary);
      margin: 50px 0 35px;
      font-weight: 600;
      position: relative;
      display: inline-block;
    }

    .page-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
    }

    .terms-section {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 24px 28px;
      margin-bottom: 24px;
      text-align: left;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .terms-section:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      border-color: var(--accent);
    }

    .terms-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      color: var(--primary);
      margin-bottom: 12px;
      font-weight: 600;
      position: relative;
      padding-left: 38px;
    }

    .terms-section h2::before {
      content: attr(data-number);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      background: var(--accent);
      color: var(--primary);
      font-weight: bold;
      font-size: 0.9rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .terms-section p {
      font-size: 1rem;
      color: #444;
      margin: 0;
    }

    .contact-box {
      margin-top: 50px;
      padding: 28px;
      background: linear-gradient(135deg, #ebf4ff, #c3dafe);
      border-radius: 14px;
      font-size: 0.98rem;
      color: #2d3748;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .contact-box h3 {
      font-family: 'Playfair Display', serif;
      color: var(--primary);
      margin-bottom: 12px;
      font-size: 1.4rem;
    }

    .contact-box p {
      margin: 10px 0;
    }

    .contact-box a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .contact-box a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      h1 { font-size: 2.2rem; }
      .terms-section { padding: 20px; }
      .terms-section h2 { font-size: 1.25rem; padding-left: 35px; }
      .terms-section h2::before { width: 24px; height: 24px; font-size: 0.8rem; }
    }
