
/* ------------------- Global Reset ------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sitka Display", "Raleway", serif;
    font-size: 19px;
    font-weight: 0px;
}

body {
    background: #fdfdfd;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1360px;
    margin: auto;
}


/* ------------------------------------ Section 1 — Navbar ---------------------------------------------- */

.navbar {
    font-family: 'Raleway', sans-serif;
    background: hsl(0, 0%, 100%);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Spreads logo, links, and buttons apart */
    width: 100%;
    max-width: 1360px; /* Match your global container */
    margin: 0 auto;
    padding: 0 20px;
}
/* Logo */
.logo img {
    width: 290px;
}

.logo {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 25px; /* Reduced gap to prevent squeezing */
    align-items: center;
    list-style: none;
}

/* Container for the Login + Search Group */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Style for the Search Icon Box (The yellow box in second image) */
.search-box-btn {
    background-color: #f6d896; /* Light yellow from your newsletter */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

/* Keep your existing styles, but ensure it doesn't wrap */

.nav-btn {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LOGIN BUTTON */
.btn-login {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #5E6B55;          /* dark green */
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.btn-login i {
  font-size: 22px;
}

/* SEARCH BUTTON */
.btn-search {
  width: 60px;
  height: 55px;
  background: #f3d494;          /* yellow */
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-search i {
  font-size: 20px;
  color: #fff;
}

.btn-login:hover {
  background: #4f5f49;
}

.btn-search:hover {
  background: #e8c77e;
}


.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #006466;
}

/* Sign In Button */
.btn-login {
    background: #83cd4f;
    color: white;
    padding: 11px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-login:hover {
    background: #29c846;
}


/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* laptop */

@media (max-width: 1024px) {
  .nav-container {
    max-width: 100%;
    gap: 40px;
    padding: 0 20px;
  }

  .logo img {
    width: 200px;
  }

  .nav-links {
    gap: 20px;
  }

  .btn-login {
    padding: 12px 22px;
    font-size: 15px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none; /* hide links */
  }

  .btn-login {
    display: none; /* optional */
  }

  .menu-icon {
    display: block; /* show hamburger */
  }

  .logo img {
    width: 180px;
  }
}

/* Mobile large*/
@media (max-width: 425px) {
  .navbar {
    padding: 15px 0;
  }

  .logo img {
    width: 160px;
  }

  .menu-icon {
    font-size: 26px;
  }
}

/* Medium */
@media (max-width: 375px) {
  .logo img {
    width: 150px;
  }

  .menu-icon {
    font-size: 24px;
  }
}

/* Small */
@media (max-width: 320px) {
  .logo img {
    width: 135px;
  }

  .menu-icon {
    font-size: 22px;
  }
}

/* ------------------------------------ Section 2 - Hero Section ------------------------------------------ */

.hero {
  position: relative;
  background-image: url("../assets/images/Home/curved-bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  overflow: hidden;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.hero {
  position: relative;
  background: url("../assets/images/Home/curved-bg.png") no-repeat bottom center;
  background-size: 110% auto;
  overflow: hidden;
  padding: 80px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.hero-text {
    width: 50%;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 530;
  font-family: "Sitka Display", "Raleway", serif;
  margin-bottom: 20px;
  color: #5b6b4f;   /* ✅ SOLANA GREEN (same as design) */
}


h1 {
    font-size: 20px;
    font-weight: 300;
}


.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
    font-family: "Sitka Display", "Raleway", serif;
}


.hero-btn {
   font-family:"Sitka Display";
    background-color:  #5e6f57;
    color: #ffffff;              /* soft green text */
    border: 2px solid #6f7f6a;   /* soft green border */
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hero-image img {
  max-width: 100%;
}

.expert-btn:hover {
    background-color: #f3f6f1;  /* very light hover */
}


/* .hero-btn:hover {
    background: #35532a;
} */

.hero-image-1 img {
    width: 420px;
}

.hero-image-2 img {
    width: 350px;
}

.hero-image-3 img {
    width: 450px;
}

/* Pagination container */
.swiper-pagination {
  bottom: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Default bullets */
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: #cfcfcf !important;
  opacity: 1 !important;
  border-radius: 50px !important;
  margin: 0 6px !important;
  transition: all 0.4s ease !important;
}

/* Active bullet → long moving pill */
.swiper-pagination-bullet-active {
  width: 32px !important;
  background-color: #5b6b4f !important;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*  TABLET */
@media (max-width: 768px) {
  .hero {
    background-position: bottom center;
    background-size: 140% auto;
  }

  .swiper-pagination {
    bottom: 24px !important;
  }

  .swiper-pagination-bullet-active {
    width: 28px !important;
  }
}

/* Media queries */
@media (max-width: 480px) {
  .hero {
    background-size: 170% auto;
  }
}

/*  MOBILE L  */
@media (max-width: 425px) {
  .hero {
    background-size: 180% auto;
  }

  .swiper-pagination {
    bottom: 20px !important;
  }

  .swiper-pagination-bullet-active {
    width: 26px !important;
  }
}

/*  MOBILE M  */
@media (max-width: 375px) {
  .swiper-pagination-bullet-active {
    width: 24px !important;
  }
}

/*  MOBILE S  */
@media (max-width: 320px) {
  .swiper-pagination-bullet-active {
    width: 22px !important;
  }
}


/* ------------------------------------- SECTION 3 — Our Plans ------------------------------------------------ */


.plans-section {
    background: lab(100% 0.01 -0.01);
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
  font-size: 41px;
  font-weight: 530;
  font-family: "Sitka Display", "Raleway", serif;
  margin-bottom: 20px;
  color: #5b6b4f;   /* ✅ SOLANA GREEN (same as design) */
}

.section-title .dot {
    color: #d14b4b;
}

.section-subtitle {
    color: #8b8b8b;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 1px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.plan-card {
    border: 2px solid #6f7f6a;
    border-radius: 12px;
    padding: 35px 25px;
    background: #fff;
}

.plan-card img {
    width: 80px;
    margin-bottom: 20px;
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.plan-card .tagline {
    display: block;
    color: #8b8b8b;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 2px;
    font-family: "Sitka Display", "Raleway", serif;

}


.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #f4c27a;
    border-radius: 8px;
    color: #f4c27a;
    text-decoration: none;
    font-weight:50;
    font-size: 20px;
    color: #000;
    font-family: "Sitka Display", "Raleway", serif;

}

.explore-btn:hover {
    background: #f4c27a;
    color: #fff;
}


.plans {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}


.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.plan-card {
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.plan-card:hover {
    background-color: #f0f0f0; /* light grey */
}

.plan-card:hover {
    background-color: #e0e0e0;
    transform: translateY(-5px);
}


.plan-icon {
    width: 80px;
    margin-bottom: 20px;
}

.plan-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-family: "Sitka Display", "Raleway", serif;
    font-weight: 2px;
}

.plan-card p {
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: "Sitka Display", "Raleway", serif;

}

.plan-btn {
    background: #006466;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.plan-btn:hover {
    background: #004d50;
}

.btn-outline {
    background: transparent;
    color: #006466;
    border: 2px solid #006466;
}

.btn-outline:hover {
    background: #006466;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}


/* ------------------------------------------ SECTION 4 — 3 Steps  ---------------------------------------------- */


/* .steps {
    padding: 90px 0;
    background: #f7fdfc;
    text-align: center;
    position: relative;
} */

.steps-section {
    background: #f3efe4;
    padding: 10px 10px 178px 10px; /* increase bottom padding */
    font-family: 'Poppins', sans-serif;
}


/* CENTER IMAGE */
.steps-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.steps-heading {
    text-align: center;
    font-family: "Sitka Display";
    font-size: 43px;
    font-weight: 2px;
    color: #5e6f5a;
    margin-bottom: 80px;
}

.steps-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
    height: 420px;
}


/* MOBILE */
@media (max-width: 900px) {
    .steps-wrapper {
        height: auto;
    }

    .steps-curve {
        display: none;
    }

    .step {
        position: static;
        margin-bottom: 40px;
        text-align: center;
    }

    .big-number {
        display: none;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .steps-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .step-item {
        width: 100%;
    }

    .steps-curve {
        display: none;
    }
}

@media (max-width: 900px) {
  .steps-center-image {
    position: static;
    transform: none;
    margin: 30px auto;
    text-align: center;
  }

  .steps-center-image img {
    max-width: 220px;
  }
}

 /* ------------------------------------- SECTION 5 — Your Benefits ---------------------------------------------- */


.benefits-section {
  background: #fff;
  padding: 80px 60px 80px;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.benefits-image img {
  max-width: 460px;
  width: 100%;
}

/* CONTENT */
.benefits-content,.what_we_do-content,.mission-content {
  flex: 1;
  font-family: "Sitka Display", "Raleway", serif;
  font-size: 20px;
}

.benefits-content h2,.what_we_do-content h2,.mission-content h2 {
  font-family: "Sitka Display", "Raleway", serif;
  font-size: 46px;
  color: #5e6f5a;
  margin-bottom: 30px;
}

/* LIST */
.benefits {
  max-width: 600px;
}

/* ITEM */
.benefit-item {
  font-family: "Raleway", serif;
  padding: 23px 23px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 14px;
}

/* HEADER */
.benefit-header {
  font-family: "Raleway";
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.benefit-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #5e6f5a;
  margin: 0;
}

.subtitle {
  margin-top: 6px;
  font-size: 15px;
  color: #8a8a8a;
}

/* ARROW */
.arrow {
  font-size: 30px;
  color: #9a9a9a;
  transition: transform 0.3s ease;
}

/* DESCRIPTION - hidden by default */
.description {
  font-size: 15px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;          /* ✅ MUST be 0 */
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-top: 12px;
}

.benefits {
  max-width: 920px;   /* increase from 600px */
}

/* HOVER EFFECT (BIG BOX) */
.benefit-item:hover {
  background: #f3f1ec;
}

.benefit-item:hover .description {
  max-height: 100px;
  opacity: 1;
}

.benefit-item:hover .arrow {
  transform: translateX(4px);
}


/* -------------------------------- SECTION 6 —  Trust Partners Auto Running Slider  ---------------------------- */


/* SECTION */
.partners-section {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 50%,
    #f7f4ee 50%,
    #f7f4ee 100%
  );
  padding: 50px 30px;
  display: flex;
  justify-content: center;
}


/* CARD */
.partners-card {
  width: 100%;
  max-width: 1250px;     /* 🔥 IMPORTANT */
  background: #ffffff;
  border-radius: 28px;
  padding: 60px 40px 70px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
}


/* TITLE */
.partners-card h2 {
  font-family: "Sitka Display" ;
  font-size: 44px;
  color: #5e6f5a;
  margin-bottom: 60px;   /* reduced from 100px */
}


/* SLIDER */
.logo-slider {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;          /* 🔥 KEY FIX */
  animation: scroll 30s linear infinite;
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* -------------------------------- SECTION 7 —  We re Here to help you  --------------------------------- */
 
.contact-section {
  background: #f7f4ee;
  padding: 60px 20px ;
  display: flex;
  justify-content: center;
}

.contact-card {
  max-width: 1100px;
  width: 200%;
  background: #fff;
  border: 2px solid #f3c77a;
  border-radius: 38px;
  padding: 50px;
  display: flex;
  gap: 50px;
}

  .contact-info {
    width: 50%;
  }

.contact-info h2 {
  font-family: "Sitka Display", "Raleway", serif;
  font-size: 38px;
  padding: 5px 10px 9px;
  color: #5b6b4f;
  margin-bottom: 15px;
}

.contact-info p {
  color: #8b8b8b;
  font-family: "Sitka Display", "Raleway", serif;
  font-size: 20px;
  padding: 10px 20px 13px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info i {
  margin-right: 10px;
  color: #6b6b6b;
}

/* FORM */
.contact-form {
  width: 50%;
}

.input-box {
  font-family:"Raleway", serif;
  display: flex;
  align-items: center;
  border: 1.5px solid #f3c77a;
  border-radius: 12px;
  padding: 20px 15px;
  margin-bottom: 10px;
}

.input-box i {
  color: #6b6b6b;
  margin-right: 10px;
  border-right: 1px solid #ddd;
  padding-right: 10px;
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Dropdown Toggle */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

/* Dropdown Links */
.dropdown-menu a {
  font-family: "Raleway", serif;
  font-size: 16px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f7fa;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}


.contact-form textarea {
  font-family:"Raleway", serif;
  width: 100%;
  height: 120px;
  border: 1.5px solid #f3c77a;
  border-radius: 12px;
  padding: 15px;
  resize: none;
  font-size: 20px;
  margin-bottom: 20px;
  outline: none;
}

.contact-form button {
  font-family: "Raleway", serif;
  background: #f3c77a;
  color: #222;
  padding: 14px 30px;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #f1bb5c;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}


/* Addrees */
.contact-info li {
  font-family:"Raleway", serif;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

.contact-info li i {
  margin-top: 4px; /* aligns icon nicely */
  color: #6b6b6b;
}

.contact-info li span {
  line-height: 1.6;
}

/* -------------------------------  Section 8 — Map  ----------------------------------- */

.map-section {
  width: 100%;
  padding: 40px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.map-section iframe {
  width: 90%;
  max-width: 1200px;
  height: 300px;
  border: none;
  border-radius: 16px;
}


/* -------------------------------  Section 9 — Subscribe & contact ----------------------------------- */


body {
  margin: 0;
  font-family: "Sitka Display", "Raleway", serif;

}

.newsletter-text h2 {
  font-family: "Raleway", serif;
  font-weight: 400;   /* matches your 1st image */
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
}


/* NEWSLETTER */
.newsletter {
  background: #f6d896;
  padding: 40px 20px;
}

.newsletter-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.newsletter-text p {
  max-width: 800px;
  line-height: 1.6;
  font-size: 18px;
}

.newsletter-form {
  display: flex;
  background: #fff;
  font-size: 20px;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.newsletter-form input {
  font-size: 18px;
  border: none;
  padding: 15px;
  width: 300px;
  outline: none;
}

.newsletter-form button {
  background: #5b6b4f;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 0 25px;
  border-radius: 10px;
  cursor: pointer;
}


/* -----------------------------------  Section 10 — footer Section --------------------------------------- */

.footer {
  background: #5b6b4f;
  color: #ffffff;
  font-family: "Sitka Display", "Raleway", serif;

}

/* ---------- FOOTER MAIN CONTENT ---------- */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

/* ---------- LOGO ---------- */
.logo {
  font-size: 45px;
  letter-spacing: 3px;
}

.sub-logo {
  font-size: 14px;
  margin-bottom: 28px;
}

/* ---------- TEXT ---------- */
.footer-col p {
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 15px;
}

.footer-col i {
  margin-right: 10px;
  font-size: 10px;
}

.phone {
  font-size: 20px;       /* increase number size */
  color: #ffffff;
}

.phone i {
  margin-right: 10px;
  font-size: 12px;       /* icon size */
}

/* Address container */
.address {
  display: flex;
  align-items: flex-start;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Icon */
.address i {
  margin-right: 12px;
  font-size: 14px;
  margin-top: 5px;
}

/* Text – removes underline completely */
.address span,
.address a {
  text-decoration: none !important;
  border-bottom: none !important;
  color: inherit;
}


.footer-col h4 {
  font-size: 21px;
  margin-bottom: 30px;
  font-family: "Sitka Display";
}

/* ---------- LISTS ---------- */

.footer-col ul {
  font-family: "Raleway", serif;
  font-size: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-family: "Raleway", serif;
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-col ul span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: rgba(246, 216, 150, 0.2); /* soft background */
  color: #f6d896
}


/* ---------- SOCIAL ICONS ---------- */
.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.social-icons i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
}

/* Individual icon colors */
.social-icons .fa-instagram {
  color: #E4405F;
}

.social-icons .fa-facebook-f {
  color: #1877F2;
}

.social-icons .fa-linkedin-in {
  color: #0A66C2;
}

.social-icons .fa-star {
  color: #f6d896;
}

.social-icons i {
  color: #5b6b4f;
  transition: all 0.3s ease;
}

.social-icons i:hover {
  background: #f6d896;
  color: #5b6b4f;
}

.social-icons i {
  transition: all 0.3s ease;
}

.social-icons .fa-instagram { color: #E4405F; }
.social-icons .fa-facebook-f { color: #1877F2; }
.social-icons .fa-linkedin-in { color: #0A66C2; }

.social-icons i:hover {
  background: #f6d896;
  color: #5b6b4f;
}

/* ---------- PAYMENT METHODS ---------- */
.pay-title {
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
}

/* Grid */
.payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card style */
.payments img {
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  height: 42px;
  width: 80px;
  object-fit: contain;
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
   font-family: "Raleway", serif;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 18px 15px;
  font-size: 13px;
}

/* ---------- FONT ---------- */
@font-face {
  font-family: 'Sitka';
  src: url('/fonts/SitkaDisplay-Regular.woff2') format('woff2');
}

.newsletter-text h2 {
  font-family: 'Sitka', serif;
}


/* -------------------------------  Section 11 —  ----------------------------------- */
