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

html {
    font-size: 62.5%;
    overflow-x: hidden;
} 

body {
    /* font-family: 'Niconne', cursive; */
    overflow: hidden;
    background-color: #E5D0B5;
}

.gap {
  height: 4.8rem;
}

/* 
#69995d - HEADINGS
#420039 - MAIN  
#b18fcf - SECONDARY 
*/
/* NAVIGATION BAR */
.navBar-wrapper {
    position: fixed;
    top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 20;
    pointer-events: none; /* allow hero interaction behind if needed */
  }
  
  .navBar-container {
    background-color: white;
    border-radius: 2rem;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    pointer-events: all; /* restore interaction */
  }
  
  .navBar-logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: -1px;
    color: #333;
  }
  
  .navBar-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  
  .navBar-links li a {
    text-decoration: none;
    font-size: 2rem;
    color: #555;
    transition: color 0.2s ease;
  }
  
  .navBar-links li a:hover {
    color: #000;
  }
  
  .navBar-button {
    background-color: #b97954;
    color: #fff;
    font-size: 2rem;
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .navBar-button:hover {
    background-color: #c5b4a1;
  }
  
/* Mobile menu toggle button */
.navBar-toggle {
  display: none;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 25;
  position: absolute;
  top: 0.5rem;
  right: 4rem;
}

/* Responsive menu */
@media (max-width: 768px) {
  .navBar-toggle {
    display: block;
  }

  .navBar-container {
    flex-direction: column;
    gap: 0;
  }

  .navBar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    margin-top: 1rem;
    padding: 1rem;
  }

  .navBar-links.show {
    display: flex;
  }

  .navBar-button {
    display: none;
  }
}


.hero-container {
    padding: 3rem;
    display: flex;
    justify-content: center;
  }
  
  .hero-image {
    background: url('/imgs/homeHero.jpg') center/cover no-repeat;
    border-radius: 2rem;
    width: 100%;
    max-width: 160rem;
    height: 700px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
  }
  
  /* OVERLAY CONTENT */
  .hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 3rem;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.728) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);

  }
  
  .hero-left {
    max-width: 50%;
  }
  
  .hero-heading {
    font-size: 4rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
  }

  .hero-caption {
    font-size: 4rem;
    font-family: 'Niconne', cursive;
    font-weight: 100;
  }

  .hero-left {
    padding: 0 0 1.2rem 1.2rem;
  }
  
  .hero-right {
    /* background: white; */
    padding: 2rem;
    border-radius: 1rem;
    max-width: 55rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 0 1.2rem 1.2rem 0;
  }
  
  .hero-description {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #fff;
  }
  
  .hero-button {
    display: inline-block;
    padding: 0.6rem 2rem;
    background-color: #b97954;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 2.3rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }
  
  .hero-button:hover {
    background-color: #c5b4a1;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-inner {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 2rem;
      gap: 2rem;
    }
  
    .hero-left, .hero-right {
      max-width: 100%;
    }
  
    .hero-heading {
      font-size: 2.4rem;
    }
  
    .hero-description,
    .hero-button {
      font-size: 1.6rem;
    }
  }

  /* WELCOME SECTION */
.welcome-section {
    background: url('/imgs/backgroundOne.jpg') center/cover no-repeat;
    /* background-color: #f7f2ec; */
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
  }

  .welcome-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f7f2ec;
    opacity: 0.85; /* adjust this value to your preference */
    z-index: 1;
  }
  
  .welcome-section > * {
    position: relative;
    z-index: 2;
  }
  
  .welcome-container {
    max-width: 800px;
  }
  
  .welcome-icon {
    width: 25rem;
    height: auto;
    margin-bottom: 2rem;
  }
  
  .welcome-heading {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    color: #b97954;
    margin-bottom: 2rem;
  }

  .welcome-caption {
    font-size: 2.6rem;
    color: #444;
    padding: 1.2rem 0;
  }
  
  .welcome-text {
    font-size: 1.8rem;
    color: #333;
    line-height: 1.7;
    border-bottom: 3px solid #b97954;
    padding-bottom: 2.4rem;
    font-weight: bold;
  }
  
  .carousel {
    width: 100%;
    max-width: 120rem;
    margin: 5rem auto;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-wrapper {
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
  }
  
  .carousel-slide {
    min-width: 100%;
    transition: opacity 0.3s ease;
    object-fit: cover;
    border-radius: 26px;
  }
  
  .carousel-arrow {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    background: #fff;
    border: none;
    /* padding: 0.5rem 1rem; */
    cursor: pointer;
    z-index: 10;
    color: #b97954;
    border-radius: 50%;
    user-select: none;
    height: 5rem;
    width: 5rem;
  }
  
  .carousel-arrow.left {
    left: 1rem;
  }
  
  .carousel-arrow.right {
    right: 1rem;
  }
  

  .facilities {
    position: relative;
    background: url('/imgs/group.jpg') bottom/cover no-repeat;
    z-index: 0;
    height: 70rem;
  }

  .facilities::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f7f2ec;
    opacity: 0.85; /* adjust this value to your preference */
    z-index: 1;
  }
  
  .facilities > * {
    position: relative;
    z-index: 2;
  }

  .facilities-box {
    margin: 0 auto;
    max-width: 120rem;
    height: 100%;
  }

  .facilities-container {
    display: flex;
    gap: 2.4rem;
    height: 100%;
  }

  .facilities-item-one {
    background-color: #b97954;
    color: #fff;
    padding: 2.4rem;
    max-width: 50rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .facilities-text-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 2.4rem 0;
  }

  .facilities-caption {
    font-size: 2rem;
  }

  .facilities-header {
    font-size: 3rem;
  }

  .facilities-text {
    font-size: 1.8rem;
  }

  .facilities-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e0d3;
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-weight: bold;
    /* padding: 1rem 2rem; */
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    margin-right: auto;
  }

  .facilities-link-text {
    padding: 1rem 2rem;
  }
  
  .facilities-link .facilitiesArrow {
    margin-left: 1.5rem;
    transform: translateY(1px);
    transition: transform 0.3s ease;
    border-left: 1px solid #fff;
    padding: 1rem;
  }
  
  .facilities-link:hover {
    background-color: #e5e0d3;
    color: #5e5e5e;
  }
  
  .facilities-link:hover .arrow {
    transform: translate(5px, 1px);
  }

  .facilities-img-box {
    margin-top: auto;
  }
  
  .facilities-img {
    width: 100%;
    margin-top: auto;
  }

  @media (max-width: 1100px) {

    .facilities {
      height: 100%;
    }
    .facilities-container {
      flex-direction: column;
    }

    .facilities-item-one {
      max-width: 100%;
      margin: 1rem;
    }

    .facilities-text-box {
      gap: 1.2rem;
    }

    .facilities-link {
      margin-right: 0;
      margin-left: auto;
    }
  }

  .services-list {
    padding: 4rem 2rem;
    max-width: 700px;
    margin: auto;
    color: #333;
    font-family: 'Georgia', serif;
  }
  
  .service {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .service-num {
    font-size: 2.6rem;
    font-style: italic;
    color: #444;
    font-weight: 500;
    min-width: 4rem;
  }
  
  .service-content h3 {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }
  
  .service-content p {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #333;
  }
  

  .card-section {
    display: flex;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #E5D0B5;
    justify-content: center;
    flex-wrap: wrap;
  }
  .card {
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* deeper shadow */
    overflow: hidden;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Optional: lift on hover */
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  .card-one {
    background-color: #f7f2ec;
  }
  .card-two {
    background-color: #b97954;
    color: #fff;
  }
  .card-three {
    background-color: #f7f2ec;
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .card-content {
    padding: 2rem;
    font-family: 'Georgia', serif;
  }
  .card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .card-content p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .card-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .contact-section {
    background: url('/imgs/enhanced/contactBackdrop.jpg') bottom/cover no-repeat;
    /* background-color: #f7f2ec; */
    position: relative;
    padding: 6rem 2rem;
    font-family: 'Georgia', serif;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f7f2ec;
    opacity: 0.85; /* adjust this value to your preference */
    z-index: 1;
  }
  
  .contact-section > * {
    position: relative;
    z-index: 2;
  }
  
  .contact-container {
    max-width: 700px;
    margin: auto;
    background: white;
    border: 1px solid #E5D0B5;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  .contact-caption {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: #b97954;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }
  
  
  .contact-container h2 {
    font-size: 2.2rem;
    color: #b97954;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
  }
  
  .contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.8rem;
  }
  
  .contact-form label {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    font-size: 1.2rem;
    border: 1px solid #E5D0B5;
    border-radius: 0.5rem;
    background-color: #fff;
    color: #2c2c2c;
    transition: border-color 0.3s ease;
    resize: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #b97954;
  }
  
  .contact-button {
    background-color: #b97954;
    color: white;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }
  
  .contact-button:hover {
    background-color: #9d5f3f;
  }
  
  
  .lux-footer {
    background-color: #b97954;
    color: #fff;
    font-family: 'Georgia', serif;
    padding: 4rem 2rem 2rem;
  }
  
  .lux-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding-bottom: 3rem;
  }
  
  .lux-footer-column h4 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
  }
  
  .lux-footer-column p,
  .lux-footer-column a {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    transition: color 0.3s ease;
  }
  
  .lux-footer-column a:hover {
    color: #d4c2ad;
  }
  
  .lux-social,
  .lux-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .lux-social li,
  .lux-nav-links li {
    margin-bottom: 0.6rem;
  }
  
  .lux-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 1.2rem;
    color: #fff;
  }
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .lux-footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .lux-footer-column {
      width: 100%;
    }
  }
  
.listThree-container {
    background: #ffffff;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}

.listThree-header {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.listThree-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.listThree-item {
    display: flex;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    align-items: flex-start;
    transition: 0.3s ease-in-out;
}

.listThree-item:hover {
    background: #e0e0e0;
}

.listThree-number {
    font-size: 24px;
    font-weight: bold;
    color: #2196f3;
    background: #e3f2fd;
    padding: 10px 15px;
    border-radius: 50%;
    margin-right: 15px;
    min-width: 45px;
    text-align: center;
}

.listThree-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.listThree-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.listThree-solution {
    font-style: italic;
    color: #333;
}

.listThree-item p {
    font-size: 2rem;
}


.intro-hero {
  background-color: #E5D0B5;
  padding: 4rem 1.5rem;
  color: #2e2e2e;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 6.8rem;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.intro-text {
  flex: 1 1 500px;
  padding-right: 2rem;
}

.intro-heading {
  font-size: 3rem;
  color: #b97954;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.intro-subheading {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

.intro-button {
  background-color: #b97954;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.8rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  float: right;
  margin-right: 2rem;
}

.intro-button:hover {
  background-color: #a36848;
}

.intro-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.intro-image img {
  width: 100%;
  height: auto;
  max-width: 500px;  /* or any value that fits your layout */
  min-width: 300px;  /* optional: prevent extreme squish */
  object-fit: contain;
}


.intro-heroImg {
  width: 100%;
  height: 280px;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
  }

  .intro-text {
    flex: 0;
    padding-right: 0;
    text-align: center;
  }

  .intro-image {
    display: none;
  }
}

.why-section {
  background-color: #fff;
  padding: 4rem 0.6rem;
  font-family: 'Segoe UI', sans-serif;
  color: #2e2e2e;
  display: flex;
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
  align-self: center;
}

.why-heading {
  font-size: 2.4rem;
  color: #b97954;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.why-list {
  list-style: none;
  counter-reset: why-counter;
  padding-left: 0;
  margin: 0;
  font-weight: bold;
}

.why-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
}

.why-item::before {
  content: counter(why-counter);
  counter-increment: why-counter;
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #E5D0B5;
  color: #b97954;
  border-radius: 50%;
  text-align: center;
  line-height: 2.5rem;
  font-weight: bold;
  font-size: 1.4rem;
}

.howItWorks-section {
  background-color: #fff;
  padding: 5rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #2e2e2e;
}

.howItWorks-container {
  max-width: 800px;
  margin: 0 auto;
}

.howItWorks-heading {
  font-size: 2.4rem;
  font-weight: 600;
  color: #b97954;
  text-align: center;
  margin-bottom: 4rem;
}

.howItWorks-timeline {
  position: relative;
  margin-left: 2rem;
  border-left: 4px solid #E5D0B5;
  padding-left: 2rem;
}

.howItWorks-step {
  position: relative;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.howItWorks-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.howItWorks-circle {
  position: absolute;
  left: -3.6rem;
  top: 0;
  width: 2.8rem;
  height: 2.8rem;
  background-color: #b97954;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 2.8rem;
  font-size: 1.6rem;
  z-index: 1;
}

.howItWorks-content {
  background-color: #fdf8f3;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.howItWorks-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.howItWorks-cta {
  text-align: center;
  margin-top: 6rem;
}

.howItWorks-summary {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.howItWorks-button {
  background-color: #b97954;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.howItWorks-button:hover {
  background-color: #a36848;
}

@media (max-width: 600px) {
  .howItWorks-timeline {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
  }

  .howItWorks-circle {
    left: -3.2rem;
  }
}

.useCases-section {
  background-color: #fdf8f3;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #2e2e2e;
}

.useCases-container {
  max-width: 1100px;
  margin: 0 auto;
}

.useCases-heading {
  font-size: 2.4rem;
  font-weight: 600;
  color: #b97954;
  margin-bottom: 3rem;
  text-align: center;
}

.useCases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.useCases-item {
  display: flex;
  align-items: flex-start;
  flex: 1 1 45%;
  position: relative;
  padding-left: 4.5rem;
}

.useCases-iconCircle {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #E5D0B5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.useCases-icon {
  font-size: 1.8rem;
  color: #b97954;
}

.useCases-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #2e2e2e;
}

.useCases-text {
  font-size: 1.8rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .useCases-item {
    flex: 1 1 100%;
    padding-left: 4rem;
  }
}

.faq-section {
  background-color: #fff;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #2e2e2e;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  font-size: 2.4rem;
  color: #b97954;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.faq-question {
  font-size: 1.8rem;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #b97954;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #a36848;
}

.faq-answer {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}


.faq-answer {
  transition: all 0.3s ease;
}

.numberedServices-section {
  padding: 4.8rem 0.6rem;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.numberedServices-container {
  max-width: 1100px;
  margin: 0 auto;
}

.numberedServices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.numberedServices-card {
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.numberedServices-card.active {
  background-color: #b97954;
  color: #fff;
}

.numberedServices-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background-color: #b97954;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: 50%;
  line-height: 48px;
}

.numberedServices-card.active .numberedServices-number {
  background-color: #fff;
  color: #b97954;
}

.numberedServices-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.numberedServices-text {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: inherit;
}

.numberedServices-link {
  font-size: 1.6rem;
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
  margin-top: auto;
  display: block;
}

.numberedServices-card:not(.active) .numberedServices-link {
  color: #b97954;
}

.numberedServices-card:not(.active):hover {
  background-color: #eaeaea;
}

.denominations-section {
  padding: 4rem 2rem;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.denominations-container {
  max-width: 80rem;
  margin: 0 auto;
}

.denominations-heading {
  font-size: 2.2rem;
  color: #b97954;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.denominations-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}


.denomination-badge {
  cursor: pointer;
  background-color: #f3f0ec;
  color: #333;
  border-radius: 20px;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.denomination-badge:hover {
  background-color: #e5d0b5;
}
