.privacy-main {
      margin-top: 100px;
      background: linear-gradient(135deg, #f5f9ff 0%, #eef4ff 100%);
      min-height: 100vh;
      font-family: 'Poppins', sans-serif;
    }

    .privacy-hero {
      padding: 100px 20px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .privacy-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,100 C300,300 700,0 1000,100 L1000,300 L0,300 Z" fill="%2327aae1" opacity="0.07"/></svg>') center/cover no-repeat;
      z-index: 0;
    }

    .privacy-hero .container {
      position: relative;
      z-index: 1;
    }

    .privacy-hero h1 {
      font-size: 68px;
      font-weight: 800;
      background: linear-gradient(90deg, #262262 0%, #27aae1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

    .privacy-hero .subtitle {
      font-size: 22px;
      color: #555;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .privacy-content {
      padding: 60px 20px 140px;
    }

    .content-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      background: #ffffff;
      padding: 70px 80px;
      border-radius: 28px;
      box-shadow: 0 25px 80px rgba(38, 34, 98, 0.12);
      border: 1px solid rgba(39, 170, 225, 0.1);
      line-height: 1.9;
      font-size: 17px;
      color: #333;
      position: relative;
      overflow: hidden;
    }

    .content-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 8px;
      height: 100%;
      background: linear-gradient(to bottom, #27aae1, #262262);
      border-radius: 4px;
    }

    .content-wrapper h2 {
      font-size: 34px;
      font-weight: 700;
      color: #262262;
      margin: 55px 0 22px;
      position: relative;
      padding-bottom: 14px;
    }

    .content-wrapper h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 90px;
      height: 5px;
      background: linear-gradient(90deg, #27aae1, #1e90ff);
      border-radius: 3px;
      box-shadow: 0 2px 8px rgba(39, 170, 225, 0.3);
    }

    .content-wrapper ul {
      margin: 24px 0;
      padding-left: 8px;
    }

    .content-wrapper ul li {
      margin-bottom: 16px;
      padding-left: 12px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .content-wrapper ul li:hover {
      transform: translateX(8px);
    }

    .content-wrapper ul li::before {
      content: '▹';
      color: #27aae1;
      font-weight: bold;
      position: absolute;
      left: -20px;
      top: 2px;
    }

    .content-wrapper a {
      color: #27aae1;
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1.5px solid transparent;
      transition: all 0.3s ease;
    }

    .content-wrapper a:hover {
      color: #262262;
      border-bottom: 1.5px solid #27aae1;
    }

    .contact-box {
      background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
      padding: 32px 36px;
      border-radius: 18px;
      border-left: 6px solid #27aae1;
      margin-top: 35px;
      font-size: 17px;
      box-shadow: 0 10px 30px rgba(39, 170, 225, 0.1);
      transition: transform 0.3s ease;
    }

    .contact-box:hover {
      transform: translateY(-5px);
    }

    .contact-box p {
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-box strong {
      color: #262262;
      min-width: 80px;
    }

    /* Responsive Adjustments */
@media (max-width: 1024px) {
  .privacy-hero h1 {
    font-size: 58px;
  }

  .privacy-hero .subtitle {
    font-size: 20px;
  }

  .content-wrapper {
    padding: 60px 60px;
  }

  .content-wrapper h2 {
    font-size: 32px;
  }
}

@media (max-width: 868px) {
  .privacy-hero {
    padding: 80px 20px 60px;
  }

  .privacy-hero h1 {
    font-size: 50px;
  }

  .privacy-hero .subtitle {
    font-size: 19px;
  }

  .privacy-content {
    padding: 40px 20px 100px;
  }

  .content-wrapper {
    padding: 50px 40px;
    border-radius: 24px;
  }

  .content-wrapper h2 {
    font-size: 30px;
    margin: 45px 0 20px;
  }

  .content-wrapper h2::after {
    width: 70px;
    height: 4px;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding: 70px 20px 50px;
  }

  .privacy-hero h1 {
    font-size: 42px;
    letter-spacing: -0.5px;
  }

  .privacy-hero .subtitle {
    font-size: 18px;
  }

  .privacy-content {
    padding: 30px 15px 80px;
  }

  .content-wrapper {
    padding: 40px 25px;
    border-radius: 20px;
    font-size: 16px;
  }

  .content-wrapper::before {
    width: 6px;
  }

  .content-wrapper h2 {
    font-size: 26px;
    margin: 40px 0 18px;
    padding-bottom: 12px;
  }

  .content-wrapper h2::after {
    width: 60px;
    height: 4px;
  }

  .content-wrapper ul li {
    padding-left: 24px;
    margin-bottom: 14px;
  }

  .content-wrapper ul li::before {
    left: 0;
  }

  .contact-box {
    padding: 28px 24px;
    border-radius: 16px;
    border-left-width: 5px;
  }

  .contact-box p {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-box strong {
    min-width: auto;
  }
}