/* PRIVACY HERO SECTION */
  .privacy-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 8%;
    min-height: 10vh;
    background: linear-gradient(180deg, #4a2ccf 0%, #1b0b75 100%);
    color: #fff;
    border-radius: 0 0 80px 80px;
  }

  .privacy-hero-content {
    max-width: 700px;
  }

  .privacy-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .breadcrumb {
    font-size: 0.95rem;
    color: #dcdcdc;
    margin-top: 8px;
  }

  .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .breadcrumb a:hover {
    color: #ffd700;
  }

  .breadcrumb span {
    margin: 0 6px;
    color: #b3b3b3;
  }

  /* PRIVACY CONTENT */
  .privacy-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px 80px;
    font-family: "Rubik", Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }

  .privacy-container h2,
  .privacy-container h3 {
    color: var(--main-color);
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .privacy-container p,
  .privacy-container li {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .privacy-container ul {
    margin-left: 20px;
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 992px) {
    .privacy-hero-title {
      font-size: 2rem;
    }
    .privacy-hero {
      padding: 20px 6%;
    }
  }

  @media (max-width: 600px) {
    .privacy-hero-title {
      font-size: 1.5rem;
    }
    .breadcrumb {
      font-size: 0.8rem;
    }
  }