@import "https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css";

@font-face {
  font-family: "Famous College";
  src: url("../font/famous_college/Famous\ College.otf") format("opentype"),
    url("./assets/font/famous_college/Famous\ College.otf.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("../font/graphik/GraphikRegular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

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

body {
  overflow-x: hidden;
  background-color: #000;
}

.max-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.section {
  width: 100%;
  display: block;
}

.image-wrapper {
  width: 100%;
  display: block;
  position: relative;
}

.parallax-img {
  max-width: 1440px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* First section specific styles */
#section1 {
  position: relative;
  z-index: 16;
}

#section1 .parallax-img {
  filter: drop-shadow(0 6mm 3mm rgba(0, 0, 0, 0.25));
}

.hero-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-left {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-banner {
  position: absolute;
  right: 11%;
  top: 29%;
  height: auto;
  z-index: 100;
  width: 39%;
}

/* Second section styles */
#section2 {
  position: relative;
  margin-top: -295px;
}

.season-pass {
  position: absolute;
  height: auto;
  z-index: 13;
  opacity: 0;
  transform: translateY(-100px);
  pointer-events: none;
}

#pass-one {
  right: 50%;
  top: -20%;
  width: 230px;
}

#pass-two {
  right: 44%;
  top: 2%;
  width: 185px;
}

#pass-three {
  right: 27%;
  top: -13%;
  width: 280px;
  transform: rotate(-90deg);
}

#pass-four {
  right: 15%;
  top: 15%;
  width: 420px;
}

.curly-arrow {
  position: absolute;
  top: 38%;
  right: 10%;
  height: 65%;
  z-index: 12;
  pointer-events: none;
}

.curly-arrow-section6 {
  position: relative;
  z-index: 12;
  width: 20%;
  margin-left: 50%;
  margin-top: 10%;
  transform: scaleX(-1) rotate(31deg);
}

@media (max-width: 1024px) {
  .season-pass {
    width: 80px;
  }
}

.about-section {
  position: absolute;
  top: 25%;
  left: 7%;
  max-width: 30%;
  z-index: 2;
}

.about-title {
  font-family: "Famous College", sans-serif;
  font-size: 82px;
  color: white;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.about-content {
  font-family: "Graphik", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Add these styles for section3 */
#section3 {
  position: relative;
  z-index: 10;
  margin-top: -90px; /* Fixed margin, no animation */
  transform: none !important; /* Prevent any transform */
}

#section3 .parallax-img {
  transform: none !important; /* Prevent any transform */
}

.pass-hand {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 13;
  transform: none !important;
}

.confetti {
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 100%;
  z-index: 12;
  transform: none !important;
}

.mania-content {
  position: absolute;
  right: 0;
  top: 35%;
  max-width: 40%;
  z-index: 13;
  transform: none !important;
}

.mania-title {
  font-family: "Famous College", sans-serif;
  font-size: 84px;
  color: white;
  margin-bottom: 34px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-button {
  width: 90%;
  margin-top: 10%;
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 20px;
  display: inline-block; /* Added for anchor tag */
  text-decoration: none; /* Added for anchor tag */
}
.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 100px; /* Match the button's rounded corners */
  animation: shineEffect 4s linear infinite;
}

@keyframes shineEffect {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 200%;
  }
}

.cta-button img {
  width: 100%;
  height: auto;
  display: block;
}

/* Add these styles for ticker section */
.ticker-section {
  height: 100px;
  background: rgba(12, 105, 173, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-section-two {
  height: 100px;
  background: rgba(98, 97, 166, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-wrapper {
  display: flex;
}

.ticker-content {
  white-space: nowrap;
  font-family: "Famous College", sans-serif;
  font-size: 48px;
  color: white;
  padding-right: 50px;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
/* Add these styles for section4 */
#section4 {
  position: relative;
  height: calc(100vh); /* Restore the full scroll height */
  overflow: visible; /* Allow content to affect scroll height */
}

.pin-wrap {
  height: 100vh;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1440px;
  overflow: hidden;
}

.pin-wrap-content {
  height: 100vh;
  position: relative;
  width: 5928px; /* full image width */
}

.horizontal-image {
  height: 100vh;
  width: 5928px; /* full image width */
  object-fit: cover;
  display: block;
}

.roadmap-title-container {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 15;
}

.roadmap-title {
  font-family: "Famous College", sans-serif;
  font-size: 84px;
  color: white;
  text-transform: uppercase;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-btn:hover {
  transform: scale(1.1);
}

.roadmap-content {
  position: absolute;
  top: 25%;
  left: 0;
  width: 5928px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50vw;
  padding: 0;
  z-index: 20; /* Add z-index to ensure it's above the background */
}

.roadmap-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: auto; /* Changed from none to auto */
  max-width: 1440px;
}

/* Update coin group styles */
.coin-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateX(-50%); /* Center align with the track */
}

.coin-group:first-child {
  margin-left: 6%; /* Adjust first coin position */
}

.coin {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.coin-text {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.social-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  position: relative;
  z-index: 25; /* Higher z-index than parent */
}

.social-icon {
  width: 40px;
  height: 40px;
  cursor: pointer; /* Add cursor pointer */
  transition: transform 0.2s ease; /* Optional: add hover effect */
}

.social-icon:hover {
  transform: scale(1.1); /* Optional: add hover effect */
}

/* Optional: Add specific hover styles for social links */
.social-buttons a {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-buttons a:hover {
  transform: scale(1.1);
}

/* Cloud styles */
.cloud-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 400px;
  z-index: 10;
  pointer-events: none;
  /* overflow: hidden; */
}

.cloud-overlay .roadmap-title-container {
  display: none;
}

.cloud-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 3%;
}

.cloud-left {
  position: absolute;
  right: -270px;
  bottom: 0;
  width: 70%;
}

.cloud-right {
  position: absolute;
  left: -270px;
  bottom: -10px;
  width: 70%;
  transform: rotateY(180deg);
  z-index: 1;
}

/* Section 5 styles */
#section5 {
  position: relative;
  margin-top: 0; /* Remove any top margin */
  z-index: -1;
}

#section5 .image-wrapper {
  position: relative;
  overflow: hidden;
}

/* Content overlay container */
.section5-content {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 50%;
}

/* Partnerships section */
.partnerships-section {
  text-align: center;
  margin-bottom: 120px; /* Space between partnerships and team experience */
}

.partnerships-title {
  font-family: "Famous College", sans-serif;
  font-size: 84px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 60px;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  justify-items: center;
  align-items: center;
  padding: 0 20px;
}

.partner-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes logos white */
}

/* Team Experience section */
.team-experience-section {
  text-align: center;
}

.team-experience-title {
  font-family: "Famous College", sans-serif;
  font-size: 84px;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.partnerships-section {
  text-align: center;
  position: relative;
  padding-top: 15%;
  z-index: 2;
}

.partnerships-title {
  font-family: "Famous College", sans-serif;
  font-size: 84px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.partner-logo {
  height: 50px; /* Adjusted height */
  width: auto;
  object-fit: contain;
}

.team-experience-section {
  position: relative;
  text-align: center;
  margin-top: 60px; /* Adjusted spacing */
  z-index: 2;
}

.team-experience-title {
  font-family: "Famous College", sans-serif;
  font-size: 84px;
  color: white;
  text-transform: uppercase;
}

/* Section 6 styles */
#section6 {
  position: relative;
  margin-bottom: 0; /* Remove any bottom margin */
}

#section6 .image-wrapper {
  position: relative;
  min-height: 100vh;
  padding-bottom: 0; /* Remove any bottom padding */
}

#section6 .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) -3.39%, rgba(115, 115, 115, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

#section6 .parallax-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-content-section {
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 2;
  max-width: 600px;
}

.about-heading {
  font-family: "Famous College", sans-serif;
  font-size: 84px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-subheading {
  font-family: "Graphik", sans-serif;
  font-size: 24px;
  color: white;
  margin-bottom: 40px;
}

.questions-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.question {
  font-family: "Graphik", sans-serif;
  font-size: 16px;
  color: white;
  background: linear-gradient(112.59deg, #6261a6 37.15%, #262540 161.9%);
  padding: 20px 25px;
  border-radius: 20px;
  max-width: 500px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.question:hover {
  transform: translateX(10px);
}

@media (max-width: 1024px) {
  .about-heading {
    font-size: 60px;
  }

  .about-subheading {
    font-size: 20px;
  }

  .questions-container {
    max-width: 90%;
    gap: 10px;
  }
}

/* Footer styles */
.footer {
  position: relative;
  background: black;
  padding: 40px 60px;
  z-index: 2;
}

.footer-content {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-family: "Graphik", sans-serif;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.footer-disclaimer {
  color: white;
  font-family: "Graphik", sans-serif;
  font-size: 16px;
  opacity: 0.8;
  text-align: right;
  max-width: 200px;
}

.season-pass-button {
  position: absolute;
  bottom: 150px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 400px;
}

.season-pass-button .footer-cta-button {
  width: 100%;
}

.footer-cta-button,
.footer-cta-button-mobile {
  width: 100%;
  display: inline-block; /* Added for anchor tag */
  text-decoration: none; /* Added for anchor tag */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.cta-button img,
.footer-cta-button img,
.footer-cta-button-mobile img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-cta-button-mobile {
  display: none;
}

@media (max-width: 1728px) {
  .parallax-img {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-banner {
    width: 40%;
  }
  .about-title {
    font-size: 60px;
  }
  .about-section {
    left: 50px;
    max-width: 49%;
  }
}

@media screen and (max-width: 767px) {
  #section2 {
    position: relative;
    margin-top: -145px;
  }

  .about-section {
    left: 30px;
  }

  .about-title {
    font-size: 40px;
    margin-bottom: 0px;
  }

  .about-content {
    font-size: 10px;
  }

  #pass-one {
    right: 37%;
    top: -225px;
    width: 115px;
  }

  #pass-two {
    right: 28%;
    top: -140px;
    width: 90px;
  }

  #pass-three {
    right: 0;
    top: -180px;
    width: 140px;
  }

  #pass-four {
    right: 7%;
    top: -55px;
    width: 135px;
  }

  .curly-arrow {
    top: 72%;
    right: 10%;
    height: 45%;
  }

  #section2 .parallax-img {
    height: 380px;
  }

  #section3 {
    margin-top: 5px;
  }

  .mania-content {
    top: 26%;
    right: 10px;
    max-width: 45%;
  }

  .mania-title {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .cta-button {
    width: 100%;
    border-radius: 7px;
    margin-top: 20%;
  }

  .ticker-section {
    height: 44px;
  }

  .ticker-content {
    font-size: 24px;
  }

  #section4 {
    height: 70vh;
    overflow-x: auto; /* Enable horizontal scroll */
    overflow-y: hidden;
  }

  #section4 .horizontal-image {
    height: 100%;
    width: 1000%;
    object-fit: cover;
    display: block;
    margin-top: -3.3%;
  }

  .pin-wrap {
    position: relative;
    height: 70vh;
    overflow: visible;
  }

  .pin-wrap-content {
    width: 1000%;
  }

  .roadmap-overlay {
    overflow: visible;
  }

  .coin {
    width: 120px;
  }

  .coin-text {
    width: 90px;
  }

  .roadmap-title {
    font-size: 40px;
  }

  .arrow-btn {
    width: 20px;
    height: 20px;
  }

  .roadmap-content {
    width: 1000%;
    gap: 100vw;
  }

  .coin-group:first-child {
    margin-left: -21%;
    margin-top: 0;
  }

  #section5 {
    position: relative;
    margin-top: -10px; /* Remove any top margin */
    z-index: 0;
  }

  .section5-content {
    height: 35%;
  }

  .partnerships-title {
    font-size: 30px;
  }

  .partner-logos {
    gap: 20px;
  }

  .partner-logo {
    height: 15px;
  }

  .partnerships-title {
    margin-bottom: 10px;
  }

  .partnerships-section {
    padding-top: 0px;
  }

  .team-experience-section {
    margin-top: -17%;
  }

  .team-experience-title {
    font-size: 30px;
  }

  .ticker-section-two {
    height: 44px;
  }

  #section6 .image-wrapper {
    /* min-height: 113vh; */
    height: 100%;
  }

  .about-content-section {
    top: 5%;
  }

  .about-heading {
    font-size: 40px;
    margin-bottom: 0px;
  }

  .about-subheading {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .question {
    padding: 12px 16px;
    font-size: 12px;
  }

  .season-pass-button {
    bottom: 0;
    left: 52%;
  }

  .footer-cta-button-mobile {
    display: block;
    width: 65%;
    margin: 0 auto;
    margin-top: 10%;
  }

  .season-pass-button .footer-cta-button {
    width: 65%;
    display: none;
  }

  .footer {
    padding: 0px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-direction: row;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-disclaimer {
    text-align: center;
    font-size: 14px;
    max-width: 300px;
  }

  .cloud-overlay {
    /* overflow: hidden; */
    position: sticky;
    transform: none;
    left: 0px;
    height: 450px;
  }

  .cloud-container {
    overflow: hidden;
  }

  .cloud-right {
    left: -60px;
    bottom: 0px;
  }

  .cloud-left {
    right: -60px;
    bottom: 0px;
  }

  .cloud-overlay .roadmap-title-container {
    display: flex;
    margin-top: -50px;
    top: 10%;
  }

  .roadmap-overlay .roadmap-title-container {
    display: none;
  }
}

/* Large Desktop */
@media (min-width: 1441px) {
  .max-container {
    padding: 0;
    margin: 0;
    min-width: 1440px;
    max-width: unset;
  }

  .parallax-img {
    min-width: 1440px;
    max-width: unset;
  }

  .hero-wrapper {
    min-width: 1440px;
    max-width: unset;
  }

  .pin-wrap {
    min-width: 1440px;
    max-width: unset;
  }

  .roadmap-overlay {
    min-width: 1440px;
    max-width: unset;
  }

  .cloud-overlay {
    min-width: 1440px;
    max-width: unset;
  }

  .roadmap-content {
    gap: 30vw;
  }

  .coin-group:first-child {
    margin-left: -3%; /* Adjust first coin position */
  }

  .curly-arrow-section6 {
    width: 30%;
    margin-top: 30%;
  }
}

/* FAQ Styles */
.questions-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}

.question {
  font-family: "Graphik", sans-serif;
  background: linear-gradient(112.59deg, #6261a6 37.15%, #262540 161.9%);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.question-header {
  font-size: 16px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.question-header::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.question.active .question-header::after {
  transform: rotate(45deg);
}

.question-content {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 0 25px;
}

.question.active .question-content {
  max-height: 200px;
  padding: 20px 25px;
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .question-header {
    font-size: 12px;
  }

  .questions-container {
    max-width: 350px;
    width: 100%;
  }

  .curly-arrow-section6 {
    display: none;
  }

  .question.active .question-content {
    padding: 0 16px 12px;
  }
}




/* Container for the language switcher */
#menu-top-menu {
    position: absolute;
    display: inline-block;
    z-index: 19;
    right: 10px;
    top: 10px;
}

/* Top-level menu items (languages) */
#menu-top-menu li {
    list-style: none;
    display: inline-block;
    padding: 5px 10px;
    background: #fff;
    border: 0 solid #ddd;
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}
#menu-top-menu a {
    display: flex;
    align-items: center;
}
/* Style for dropdowns inside a language menu */
#menu-top-menu li ul {
    display: none; /* Hide dropdown initially */
    position: absolute;
    top: 100%; /* Dropdown appears below the parent item */
    left: 0; /* Aligns dropdown with the parent */
    background: #fff;
    border: 1px solid #ddd;
    padding: 0;
    margin: 0;
    min-width: 150px; /* Ensure dropdown has a consistent width */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for better appearance */
    z-index: 999; /* Ensure dropdown appears on top */
}

/* Style for dropdown items */
#menu-top-menu li ul li {
    display: block; /* Ensure items are stacked vertically inside the dropdown */
    padding: 10px 15px;
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Show dropdown on hover */
#menu-top-menu li:hover > ul {
    display: block; /* Reveal the dropdown */
}

/* Add hover effect for dropdown items */
#menu-top-menu li ul li:hover {
    background: #f0f0f0; /* Highlight the item on hover */
}

/* Optional: Style flags (if using) */
#menu-top-menu li img {
    height: 16px;
    width: auto;
    margin-right: 8px; /* Space between flag and text */
    vertical-align: middle;
}




.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
	color: white;
  }

  .privacy-policy h1 {
    color: white;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
  }

 .privacy-policy h2 {
    color: white;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
  }

 .privacy-policy h3 {
    color: white;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
  }

 .privacy-policy p {
    margin-bottom: 15px;
    color: #f0f0f0;
  }

 .privacy-policy ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f0f0f0;
  }

  .privacy-policy li {
    margin-bottom: 10px;
  }

 .privacy-policy strong {
    font-weight: bold;
  }

 .privacy-policy .section {
    margin-bottom: 40px;
  }
  
 .privacy-policy a {
    color: #3498db;
    text-decoration: none;
  }

 .privacy-policy a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .privacy-policy {
      padding: 20px 15px;
    }

   .privacy-policy h1 {
      font-size: 22px;
    }

   .privacy-policy h2 {
      font-size: 18px;
    }

   .privacy-policy h3 {
      font-size: 16px;
    }
  }

