/* 

--- 01 typography system

-Font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 48 / 64 / 80 / 96 / 128

-font weights:
Default: 400 
Medium: 500
Semi-bold: 600
Bold: 700

-Line heights: 
Default:1 
Small:1.05
Paragraph default: 1.6

--- 02 colors:
Color of logo: #cb6ce4
Main Color for text: #4A294A (Deep Purple)
Possible back ground: #F8F0FC , #F3D9FA ( grape 0 and 1)
Darker colors for details and background: grape 7 #ae3ec9 grape 8 #9c36b5 grape 9 #862e9c


--- 03 Tinst and shades:
--- from main color to dark:

#cb6ce4 #b761cd #a256b6 #8e4ca0 #7a4189 #663672 #512b5b #3d2044 #29162e #140b17 #000000

--- from main color to light:

#cb6ce4 #d07be7 #d589e9 #db98ec #e0a7ef #e5b6f2 #eac4f4 #efd3f7 #f5e2fa #faf0fc #ffffff
 

- Grays: 
#555
#333
#ddd
#fafafa  

--- 03 shadows: 


0 2.4rem 4.8rem rgba(0, 0, 0, 0.075)


--- 04 border-radius: 

Default : 9 px
--- Lettere spaceing;

- default: 1
medium: 0.75
small: 0.50

--- 05 whitespace: 

-Spacing system (px):

2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128


*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /*  font-size: 10px; */
  /* 10px / 10px = 0.625 = 62,5% */
  /* Percentage of a user's browser font-size setting*/
  font-size: 62.5%;
  overflow-x: hidden;
  /* Does not work on safarie and edge */
  scroll-behavior: smooth;
}

body,
button {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  /* only works if nothing is absolutly posisioned in relation to body */
  overflow-x: hidden;
}
*:focus {
  outline: none;
  box-shadow: 0 0 0 0.3rem rgba(92, 62, 92, 0.5);
}

/********************************/
/***** GENERAL REUSABLE components *****/
/********************************/
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid-center-vertically {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 4.8rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.subheading {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  color: #4a294a;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 1px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #4a294a;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #5c3e5c;
  color: #fff;
}
.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #4a294a;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #f5e2fa;
  /*trick to add border inside*/
  box-shadow: inset 0 0 0 0.3rem #fff;
}

.btn--form {
  background-color: #4a294a;
  color: #fff;
  width: 100%;
  padding: 1.2rem;
}
.btn--form:hover {
  background-color: #fff;
  color: #4a294a;
}
.link:link,
.link:visited {
  display: inline-block;
  font-size: 1.8rem;
  color: #5c3e5c;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: all 0.3s;
  padding-bottom: 0.2rem;
}

.link:hover,
.link:active {
  color: #4a294a;
  border-bottom: 1px solid transparent;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}

.list-icon {
  min-width: 2.4rem;
  min-height: 2.4rem;
  color: #a256b6;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.6rem rgba(74, 41, 74, 0.5);
}

/********************************/
/***** Helper/setting classes *****/
/********************************/

.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom {
  margin-bottom: 9.6rem 0 !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center !important;
}

/********************************/
/***** HEADER *****/
/********************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #f5e2fa 0%, #faf0fc 100%);
  /* beacause we want to make it sticky*/

  height: 9.6rem;
  padding: 0 4.8rem;
}

.logo {
  height: 6.4rem;
}
/********************************/
/***** NAVIGATION *****/
/********************************/
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #4a294a;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  background-color: #4a294a;
  color: #fff;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #5c3e5c;
}
/********************************/
/***** LANGUAGE SELECTOR *****/
/********************************/

/* ===== Language switcher (dropdown) ===== */
.lang-item {
  display: flex;
  align-items: center;
}

.lang-switch {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  border-radius: 9px;
  border: 2px solid #4a294a;
  background: #f5e2fa;
  color: #4a294a;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn:hover {
  background: #efd3f7;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  list-style: none;
  padding: 0.6rem;
  margin: 0;
  min-width: 10rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  display: none;
  z-index: 999;
}

.lang-switch.is-open .lang-menu {
  display: block;
}

.lang-option {
  display: block;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s;
}

.lang-option:hover {
  background: #f5e2fa;
  color: #4a294a;
}

.lang-option.is-active {
  background: rgba(74, 41, 74, 0.1);
  color: #4a294a;
}
/********************************/

/********************************/
/***** HERO SECTION *****/
/********************************/
.section-hero {
  background-color: #faf0fc;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
  border-radius: 25%;
}

.testimonial {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.testimonial-img {
  display: flex;
}

.testimonial-img img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #f5e2fa;
}
.testimonial-img img:last-child {
  margin-right: 0;
}

.testimonial-text {
  font-size: 1.6rem;
  color: #4a294a;
  font-weight: 700;
}

/********************************/

/********************************/
/***** about MatchedFertility SECTION *****/
/********************************/

.section-about-matchedfertility {
  padding: 9.6rem 0;
  background-color: #fdfafe;
}

.heading-about {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin-bottom: 1.8rem;
}

.about-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
.about-description span {
  color: #4a294a;
  font-weight: 700;
}
/********************************/
/********************************/
/***** how it works SECTION *****/
/********************************/

.section-how {
  padding: 9.6rem 0;
  background-color: #faf0fc;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #e5b6f2;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

.step-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img {
  width: 85%;
}
/********************************/

/********************************/
/***** Services SECTION *****/
/********************************/

.section-services {
  padding: 9.6rem 0;
  background-color: #fdfafe;
}

.service {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
}

.service:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-content {
  padding: 1.6rem;
}

.service-tags {
  margin-bottom: 1.2rem;
}
.tag {
  display: inline-block;
  background-color: #a256b6;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 9px;
}

.service-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3.2rem;
}

.service-attrebutes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-attribute {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: #a256b6;
}

.service-img {
  width: 100%;
}

.all-services {
  text-align: center;
  font-size: 1.8rem;
}
/********************************/

/********************************/
/***** Testimonials SECTION *****/
/********************************/

.section-testimonials {
  padding: 9.6rem 0;
  background-color: #faf0fc;
}

/* ===== Testimonials Carousel ===== */
.testimonials {
  padding: 9.6rem 0;
}

.heading-testimonials {
  color: #333;
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.testimonials__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.sub {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

/* Controls */
.testimonials__controls {
  display: flex;
  gap: 0.8rem;
}

.tbtn {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 2.2rem;
  border: 2px solid #4a294a;
  color: #4a294a;
  background: #f5e2fa;
  transition:
    transform 0.15s,
    background 0.15s;
}

.tbtn:hover {
  background: #efd3f7;
  transform: translateY(-1px);
}

/* Carousel */
.carousel {
  overflow: hidden;
  border-radius: 18px;
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% - 2rem);
  gap: 1.6rem;
  overflow-x: auto;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel__track::-webkit-scrollbar {
  height: 10px;
}
.carousel__track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

/* Cards */
.tcard {
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.06);
}

.tcard__top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.tcard__avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(74, 41, 74, 0.25);
}

.tcard__name {
  margin: 0;
  font-weight: 500;
  font-size: 1.6em;
}

.tcard__meta {
  margin: 0.2rem 0 0;
  opacity: 0.7;
  font-size: 1.2rem;
}

.tcard__quote {
  margin: 0 0 1.4rem;
  font-size: 1.6rem;
  line-height: 1.7;
}

.tcard__tag {
  margin: 0;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #faf0fc;
  color: #4a294a;
  font-weight: 700;
  border: 1px solid rgba(74, 41, 74, 0.18);
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(74, 41, 74, 0.25);
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.dot:hover {
  background: rgba(74, 41, 74, 0.45);
}

.dot.is-active {
  background: #4a294a;
  transform: scale(1.25);
}

/* Responsive: show 2 cards on wider screens */
@media (min-width: 900px) {
  .carousel__track {
    grid-auto-columns: calc(50% - 1.2rem);
  }
}

/* Responsive: stack header controls */
@media (max-width: 680px) {
  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/********************************/

/********************************/
/***** Pricing SECTION *****/
/********************************/
.section-pricing {
  padding: 9.6rem 0;
  background-color: #fdfafe;
}

.container-plan {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.pricing-plan {
  padding: 2.8rem;
  border-radius: 12px;
}
.pricing-plan--standard {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
}

.pricing-plan--highlighted {
  background-color: #eac4f4;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  position: relative;
  overflow: hidden;
}

.pricing-plan--highlighted::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -17%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #a256b6;
  color: white;
  padding: 0.8rem 10rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.plan-name {
  color: #a256b6;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price--complimentary {
  font-size: 3.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 4.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 400;
  color: #555;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
}

.plan-sign-up {
  text-align: center;
  margin-top: 3.2rem;
}

.list-item span {
  font-size: 1.6rem;
}

.vat-text {
  font-size: 1rem;
  color: #111;
  margin-top: 1.6rem;
  text-align: center;
}

.feature-icon {
  color: #a256b6;
  min-height: 3rem;
  min-width: 3rem;
  background-color: #eac4f4;
  padding: 1.5rem;
  border-radius: 50%;
  margin-bottom: 2.4rem;
}

.feature-title {
  font-size: 1.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.4rem;
  line-height: 1.6;
}
/********************************/

/********************************/
/***** CTA SECTION *****/
/********************************/
.section-cta {
  padding: 4.8rem 0 12.8rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;

  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background-image: linear-gradient(to right bottom, #eac4f4, #db98ec);
  overflow: hidden;
  /* temporal*/
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #29162e;
}

.cta .heading-secondary {
  color: #29162e;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-image-box {
  background-image:
    linear-gradient(
      to right bottom,
      rgba(234, 196, 244, 0.3),
      rgba(219, 152, 236, 0.3)
    ),
    url("/assets/Images/MatchedFertility_couple_with_baby.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  grid-column: 1 / -1;
}

.form-consent input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  margin: 0;
  accent-color: #4a294a;
  box-shadow: none;
}

.form-consent label {
  margin: 0 !important; /* overrides .cta-form label margin-bottom */
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
}

.form-consent a {
  color: #4a294a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent a:hover {
  text-decoration-thickness: 2px;
}

.form-consent,
.btn--form {
  grid-column: 1 / -1;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1rem;
  font-size: 1.6rem;
  font-family: inherit;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 9px;
  box-shadow: inset 0 0 0.4rem rgba(0, 0, 0, 0.05);
}

.cta-form input::placeholder {
  color: #aaa;
}

.hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-error {
  margin: 0.4rem 0 0.8rem;
  color: #b42318;
  font-size: 1.3rem;
}

.is-invalid {
  border: 2px solid #b42318 !important;
  outline: none;
}

.cta-success {
  margin: 0 0 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: #f5e2fa;
  color: #4a294a;
  font-weight: 700;
}

.form-disclaimer {
  margin-top: 1rem;
  color: #6f6f6f;
  font-size: 1.2rem;
  line-height: 1.4;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.6rem rgba(245, 226, 250, 0.5);
}

@media (max-width: 600px) {
  .form-consent {
    align-items: flex-start;
  }
}

/********************************/
/***** foorter SECTION *****/
/********************************/

.footer {
  padding: 12.8rem;
  border-top: 1px solid #eee;
}
.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
}
.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.social-icon {
  min-height: 2.4rem;
  min-width: 2.4rem;
}

.copyright {
  font-size: 1rem;
  color: #5a5858;
  line-height: 1.6;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6rem;
}

.address {
  margin-bottom: 2.4rem;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #5a5858;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #888;
}

/********************************/
/***** FAQ SECTION *****/
/********************************/
.section-faq {
  padding: 9.6rem 0;
  background: #ffffff;
}

.section-faq .subheading {
  margin-bottom: 1.6rem; /* matches your global subheading */
}

.section-faq .heading-secondary {
  margin-bottom: 4.8rem; /* override default 9.6rem for this section */
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* FAQ Card */
.faq-item {
  background: #faf0fc;
  border: 1px solid rgba(74, 41, 74, 0.12);
  border-radius: 12px;
  padding: 2.4rem 2.8rem;
  box-shadow: 0 0.8rem 2.4rem rgba(74, 41, 74, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 3.2rem rgba(74, 41, 74, 0.1);
}

/* Question (not using heading-tertiary on purpose) */
.faq-question {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #4a294a;
  letter-spacing: -0.3px;
}

/* Answer */
.faq-answer {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #6f6f6f;
  max-width: 65ch;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-item {
    padding: 1.8rem 2rem;
  }

  .faq-question {
    font-size: 1.8rem;
  }
}

/* Optional: 2-column layout on larger screens */
@media (min-width: 900px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }

  .faq-item {
    height: 100%;
  }
}

/********************************


/********************************/
/***** FAQ section *****/
/********************************/
.legal-page {
  padding: 9.6rem 0;
  max-width: 90rem;
}

.heading-legal {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.legal-page p,
.legal-page li {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2.4rem;
}

.legal-page ul {
  padding-left: 2rem;
  margin-bottom: 1.6rem;
}

/********************************/
/***** HOME button *****/
/********************************/

/* Container to center the button (optional) */
.back-home-container {
  margin-bottom: 9.6rem;
  text-align: center; /* Removes this line if you want it aligned left */
}

/* The Button Styling */
.btn-home {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  color: #fff;
  background-color: #4a294a;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

/* Hover Effect */
.btn-home:hover {
  background-color: #5c3e5c; /* Slightly lighter on hover */
  text-decoration: none;
}
/********************************/

/********************************/
/***** BURGER BUTTON (BASE) *****/
/********************************/
/* Mobile navigation button */
.btn-mobile-nav {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* hidden by default, shown in queries.css at 1050px */
}

.icon-mobile-nav {
  width: 4.8rem;
  height: 4.8rem;
  color: #4a294a;
}

/* Show menu icon by default, hide close icon */
.icon-menu {
  display: block;
}

.icon-close {
  display: none;
}

/* When nav is open, hide menu icon and show close icon */
.nav-open .icon-menu {
  display: none;
}

.nav-open .icon-close {
  display: block;
}
