.heroSection {
  min-height: 50vh;
  padding-top: 100px;
  text-align: center;
}

.heroSection h1 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 150px;
  line-height: 120px;
  font-weight: 700;
  color: var(--light);
}

.heroSection p {
  font-size: 20px;
  line-height: 44px;
  color: var(--lighter-light);
  max-width: 950px;
  margin: 0 auto;
}

.privacyContent {
  background-color: var(--card-background);
  padding: 50px 0;
}

/* New Privacy Policy Layout */
.privacy-main-content {
  max-width: 1920px;
  margin: 0 auto;
}

.privacy-section {
  background: var(--base-background);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--lighter-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.privacy-icon {
  width: 50px;
  height: 50px;
  background: var(--base-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-icon i {
  font-size: 24px;
  color: var(--light);
}

.privacy-section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--light);
  margin: 0;
}

.privacy-content-body {
  color: var(--lighter-light);
}

.privacy-content-body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: var(--lighter-light);
  font-size: 16px;
  line-height: 1.6;
}

.privacy-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--base-color);
  border-radius: 50%;
}

.privacy-highlight {
  background: rgba(var(--base-color-rgb), 0.1);
  border-left: 4px solid var(--base-color);
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
}

.privacy-highlight p {
  margin: 0;
  color: var(--light);
}

.privacyAction {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 0;
}

.privacyAction h2 {
  font-family: var(--font-heading);
  color: var(--light);
  font-size: 80px;
  line-height: 72px;
  margin: 0;
}

.privacyAction p {
  color: var(--lighter-light);
  font-size: 18px;
  line-height: 32px;
}

.contact-btn {
  display: inline-block;
  background-color: var(--base-color);
  color: var(--light);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 500px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--hover-color);
}

/* Responsive Design */
@media (max-width: 1350px) {
  .heroSection h1 {
    font-size: 145px !important;
    line-height: 135px !important;
  }
}
@media (max-width: 1205px) {
    .privacyAction h2 {
      font-size: 68px !important;
      line-height: 63px !important;
    }
  }
@media (max-width: 1200px) {
  .heroSection h1 {
    font-size: 130px !important;
    line-height: 120px !important;
  }
}
@media (max-width: 1100px) {
  .heroSection h1 {
    font-size: 110px !important;
    line-height: 100px !important;
  }
}

  @media (max-width: 1024px) {
    .privacyAction h2 {
      font-size: 63px !important;
    }
  }
  @media (max-width: 1024px) {
    .privacyAction h2,
    .privacyAction p {
      width: calc(100% - 40px) !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
  }
@media (max-width: 1024px) {
  .heroSection h1 {
    font-size: 80px !important;
    line-height: 70px !important;
  }
}

@media (max-width: 1024px) {
  .privacy-section {
    padding: 30px;
  }

  .privacy-section-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .heroSection p {
    font-size: 16px !important;
    line-height: 32px !important;
  }
  .heroSection .spacer-30 {
    height: 15px !important;
  }
  .privacyAction
  {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .heroSection p {
    width: calc(100% - 20px) !important;
  }
  .privacy-section-header h2 {
    font-size: 24px;
  }
  .privacyAction p, .contact-btn
  {
    font-size: 16px !important;
  }
  .privacyAction .spacer-100
  {
    height: 70px !important;
  }
}

  @media (max-width: 767px) {
    .privacyAction h2,
    .privacyAction p {
      width: calc(100% - 20px) !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
  }
  @media (max-width: 767px) {
    .privacyAction h2 {
      font-size: 58px !important;
      line-height: 58px !important;
    }
  }
@media (max-width: 767px) {
  .heroSection h1 {
    font-size: 70px !important;
    line-height: 60px !important;
  }
  .privacy-section {
    padding: 20px !important;
  }
  .privacyContent {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .heroSection h1 {
    width: calc(100% - 20px) !important;
  }
}
@media (max-width: 610px) {
  .heroSection {
    padding-top: 80px !important;
  }
}
@media (max-width: 510px) {
  .privacyAction h2 {
    font-size: 53px !important;
    line-height: 53px !important;
  }
}
@media (max-width: 500px) {
  .heroSection h1 {
    font-size: 60px !important;
    line-height: 60px !important;
    width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}