@charset "UTF-8";
body {
  font-family: "Inter", "Montserrat", "Segoe UI", Tahoma, sans-serif;
  background-color: #ffffff;
  padding-top: 86px;
  overflow-x: hidden;
}
body a {
  color: #1a6e35;
  font-family: "Montserrat", sans-serif;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: #3c3c3a;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
body h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
body h2 {
  font-size: 2rem;
  font-weight: 600;
}
body h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
body h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
body p {
  color: #535352;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
body .layout {
  margin-bottom: 0;
}
body .navbar {
  --bs-navbar-padding-y: 0;
}
body .nav-link {
  color: #1a6e35;
  font-weight: 600;
}
body .nav-link:hover, body .nav-link:focus, body .nav-link:focus-visible, body .nav-link:active {
  color: #1a6e35;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1.5px;
}
body .sub-nav-link {
  color: #1a6e35;
}
body .sub-nav-link:hover {
  color: #1a6e35;
}

@media (min-width: 992px) {
  .navbar-nav {
    margin: 0 auto; /* centers horizontally */
    text-align: center; /* optional: centers inline-block children */
  }
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  margin-top: 10px;
}
@media (max-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    margin-top: 0px;
  }
}

.nav-item {
  text-align: left;
}

.nav-item.dropdown {
  position: static;
}

.dropdown-menu {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 1rem;
  min-width: 200px;
}
@media screen and (max-width: 992px) {
  .dropdown-menu {
    box-shadow: none;
    padding: 0;
    min-width: 100%;
  }
}

/* --- Animate Dropdown on Click --- */
@media (min-width: 992px) {
  .dropdown-menu {
    display: block; /* keep block so transitions can run */
    max-height: 0; /* start hidden */
    overflow: hidden; /* hide clipped content */
    opacity: 0;
    transform: scaleY(0.95); /* slightly squished */
    transform-origin: top; /* fold from the top */
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  }
  .dropdown-menu.show {
    max-height: 800px; /* large enough to fit content */
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
    pointer-events: auto;
  }
}
.dropdown-item.active {
  background-color: #21b55a;
  color: white;
}

.dropdown-item.active:active {
  background-color: #199c4b;
  color: white;
}

.site-header {
  transition: box-shadow 0.3s ease, border-bottom-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: #e8e8e8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

header {
  background-color: #ffffff;
}
header h1 {
  font-weight: 700;
}
header p {
  font-size: 1.25rem;
}

section h5 {
  font-weight: 600;
  color: #21b55a;
}
section .btn-outline-primary {
  border-color: #21b55a;
  color: #ffffff;
}
section .btn-outline-primary:hover {
  background-color: #199c4b;
  color: #ffffff;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -80px;
}
.hero-section .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero-background.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
  --bs-gutter-x: 0;
}
.container .hero-container {
  width: 100%;
  height: 100%;
  align-items: center;
}

.primary-cta-btn, .job-application-link a, .join-us-section .join-us-content a, .product-hero__cta a, .agency-layout__content .agency-button a {
  background-color: #21b55a;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.primary-cta-btn:hover, .job-application-link a:hover, .join-us-section .join-us-content a:hover, .product-hero__cta a:hover, .agency-layout__content .agency-button a:hover {
  background-color: #199c4b;
  color: #ffffff;
}

.primary-cta-btn-outline, .more-link a, .news-view-more-link a, .claims-layout__content .claims-buttons .field--name-field-secondary-button a {
  width: fit-content;
  display: flex;
  gap: 10px;
  background-color: transparent;
  color: #21b55a;
  border: 2px solid #21b55a;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.primary-cta-btn-outline:hover, .more-link a:hover, .news-view-more-link a:hover, .claims-layout__content .claims-buttons .field--name-field-secondary-button a:hover {
  background-color: #21b55a;
  color: white;
}

.secondary-cta-btn, .product-next-steps .cta-block .cta-content a, .swiper-slide-content .cta-button a {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fdf21c;
  color: #1a6e35;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.secondary-cta-btn:hover, .product-next-steps .cta-block .cta-content a:hover, .swiper-slide-content .cta-button a:hover {
  background-color: #ded417;
  color: #1a6e35;
}

.secondary-cta-btn-outline {
  display: flex;
  gap: 10px;
  background-color: transparent;
  color: #fdf21c;
  border: 2px solid #fdf21c;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.secondary-cta-btn-outline:hover {
  background-color: #fdf21c;
  color: #1a6e35;
}

.navbar .bi-search {
  font-size: 1.25rem;
  color: #21b55a;
  transition: color 0.3s;
}
.navbar .bi-search:hover {
  color: #199c4b;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.hero-container {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
.hero-content > div:first-child {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-content > div:first-child h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}
.hero-content > div:first-child p {
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 30px;
  color: white;
}
.hero-content > div:first-child .hero-cta {
  display: flex;
  gap: 20px;
}
.hero-content .hero-image {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-content .hero-image img {
  max-height: 70vh;
  width: auto;
  object-fit: contain;
}

.floating-banner-region {
  position: relative;
  margin-top: -6em;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 10;
}

swiper-container.campaign-slider-block {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --swiper-navigation-color: #ffffff;
  --swiper-pagination-color: #ffffff;
  --swiper-navigation-size: 30px;
}

swiper-slide {
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.swiper-slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-slide-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.swiper-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.swiper-slide-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}
.swiper-slide-content .subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.swiper-slide-content .cta-button a {
  width: fit-content;
}
.swiper-slide-content .cta-button a::after {
  content: "\f134";
  font-family: "bootstrap-icons";
  font-size: 1.2em;
  line-height: 1;
}

form#views-exposed-form-products-overview-block-1 .form-item-term-node-tid-depth label {
  display: none;
}

form#views-exposed-form-products-overview-block-1 .bef-links ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
form#views-exposed-form-products-overview-block-1 .bef-link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-color: #f8f8f8;
  color: #535352;
}
form#views-exposed-form-products-overview-block-1 .bef-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
form#views-exposed-form-products-overview-block-1 .bef-link--selected {
  background-color: #21b55a;
  color: #ffffff;
  border-color: #21b55a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 181, 90, 0.4);
}
form#views-exposed-form-products-overview-block-1 .bef-link--selected:hover {
  background-color: #199c4b;
}

.view-products-overview .view-filters {
  justify-self: center;
}

.products-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.section-sm-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-us, .pre-footer {
  background: url("../images/section_bg.png") no-repeat center center;
  padding: 6rem 0;
  background-size: cover;
}
.why-choose-us__layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  .why-choose-us__layout {
    grid-template-columns: 1fr;
  }
}
.why-choose-us .section-small-title, .pre-footer .section-small-title {
  display: flex;
  align-items: center;
  color: #ffffff;
  vertical-align: middle;
}
.why-choose-us .section-small-title h6, .pre-footer .section-small-title h6 {
  color: #ffffff;
  vertical-align: middle;
}
.why-choose-us h2, .pre-footer h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.why-choose-us p, .pre-footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 0 2rem 0;
}
.why-choose-us p a, .pre-footer p a {
  width: fit-content;
  display: flex;
  gap: 10px;
  background-color: #fdf21c;
  color: #1a6e35;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.why-choose-us p a:hover, .pre-footer p a:hover {
  background-color: #ded417;
  color: #1a6e35;
}
.why-choose-us .stats-card-grid, .pre-footer .stats-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .why-choose-us .stats-card-grid, .pre-footer .stats-card-grid {
    grid-template-columns: 1fr;
  }
}
.why-choose-us .stats-card, .pre-footer .stats-card {
  background-color: #ffffff;
  color: #535352;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.why-choose-us .stats-card .field--name-field-stat-prefix, .pre-footer .stats-card .field--name-field-stat-prefix {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d1d1d1;
  margin-right: 0.25rem;
}
.why-choose-us .stats-card .field--name-field-stat-value, .pre-footer .stats-card .field--name-field-stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #3c3c3a;
  line-height: 1.2;
}
.why-choose-us .stats-card .field--name-field-stat-label, .pre-footer .stats-card .field--name-field-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-basis: 100%;
  margin-top: 0.25rem;
}

.claims-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.claims-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .claims-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.claims-layout__images {
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .claims-layout__images {
    display: none;
  }
}
.claims-layout__images img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.claims-layout__images .claims-image-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
}
.claims-layout__images .claims-image-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  border: 6px solid #ffffff;
}
.claims-layout__content .pre-header {
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3a;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.claims-layout__content .pre-header::before {
  content: "\f3e6";
  font-family: "bootstrap-icons";
  color: #3c3c3a;
  font-style: normal;
  font-weight: normal;
  font-size: 0.9em;
  vertical-align: middle;
}
.claims-layout__content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #21b55a;
  margin-bottom: 1.5rem;
}
.claims-layout__content p {
  max-width: 100%;
  margin: 0 0 2rem 0;
}
.claims-layout__content .claims-steps {
  padding: 0;
  margin: 0 0 2rem 0;
}
.claims-layout__content .claims-steps ul {
  list-style: none;
  padding-inline-start: 0px;
}
.claims-layout__content .claims-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}
.claims-layout__content .claims-steps li::before {
  content: "\f26a";
  position: absolute;
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: normal;
  font-size: 1.5rem;
  color: #ebd35b;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.claims-layout__content .claims-steps li strong {
  display: block;
  font-weight: 700;
  color: #3c3c3a;
}
.claims-layout__content .claims-steps li span {
  font-size: 0.95rem;
  color: #535352;
}
.claims-layout__content .claims-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.claims-layout__content .claims-buttons .field--name-field-primary-button a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #21b55a;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.claims-layout__content .claims-buttons .field--name-field-primary-button a:hover {
  background-color: #199c4b;
  color: #ffffff;
}
.claims-layout__content .claims-buttons .field--name-field-primary-button a::after {
  content: "\f134";
  font-family: "bootstrap-icons";
  font-size: 1.2em;
  line-height: 1;
}
.claims-layout__content .claims-buttons .field--name-field-secondary-button a {
  text-decoration: none;
}

.agency-section {
  padding: 6rem 0;
  background-color: #eff7f2;
}

.agency-layout {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .agency-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .agency-layout__content {
    order: 2;
  }
}
.agency-layout__content .pre-header {
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3a;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.agency-layout__content .pre-header::before {
  content: "\f3e6";
  font-family: "bootstrap-icons";
  color: #3c3c3a;
  font-style: normal;
  font-weight: normal;
  font-size: 0.9em;
  vertical-align: middle;
}
.agency-layout__content .field--name-field-title h2,
.agency-layout__content .field--name-field-title {
  font-size: 3rem;
  font-weight: 700;
  color: #21b55a;
  margin-bottom: 1.5rem;
}
.agency-layout__content .field--name-body p {
  max-width: 100%;
  margin: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .agency-layout__content .field--name-body p {
    margin: 0 auto 2rem auto;
  }
}
.agency-layout__content .agency-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}
.agency-layout__content .agency-steps p {
  margin: 2rem 0rem;
}
.agency-layout__content .agency-steps ul {
  list-style: none;
  padding-inline-start: 0px;
}
.agency-layout__content .agency-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}
.agency-layout__content .agency-steps li::before {
  content: "\f26a";
  position: absolute;
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: normal;
  font-size: 1.5rem;
  color: #ebd35b;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.agency-layout__content .agency-button a::after {
  content: "\f134";
  font-family: "bootstrap-icons";
  margin-left: 0.5rem;
}
.agency-layout__content__image {
  width: fit-content;
}
@media (max-width: 992px) {
  .agency-layout__content__image {
    order: 1;
    margin-bottom: 2rem;
  }
}
.agency-layout__content__image .field__item {
  display: inline-block;
  width: fit-content;
}
.agency-layout__content__image .field__item img {
  height: auto;
}

.homepage-news-section {
  padding: 6rem 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.view-news-and-insights .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .view-news-and-insights .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .view-news-and-insights .view-content {
    grid-template-columns: 1fr;
  }
}

.view-products-overview .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .view-products-overview .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .view-products-overview .view-content {
    grid-template-columns: 1fr;
  }
}

.node--view-mode-teaser {
  height: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: all 0.3s ease;
}
.node--view-mode-teaser:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.field--name-field-product-artwork img,
.field--name-field-post-featured-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.node__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.node__title a {
  text-decoration: none;
  color: #3c3c3a;
}
.node__title a:hover {
  color: #21b55a;
}

.node__meta {
  margin-bottom: 1rem;
}
.node__meta .node__date {
  font-size: 0.9rem;
  color: #d1d1d1;
}

.field--name-field-short-description,
.field--name-field-summary {
  color: #535352;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.read-more-link {
  margin-top: auto;
}

.field--name-field-cta-link a,
.read-more-link a {
  display: flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.field--name-field-cta-link a::after,
.read-more-link a::after {
  content: "\f135";
  font-family: "bootstrap-icons";
  font-size: 1.2em;
  line-height: 1;
}

.news-view-more-link {
  text-align: center;
  margin-top: 3rem;
}
.pre-footer {
  background: url("../images/family banner image.png") no-repeat center center;
  background-size: cover;
}
.pre-footer a::after {
  content: "\f134";
  font-family: "bootstrap-icons";
  font-size: 1.2em;
  line-height: 1;
  background-color: none;
}

footer {
  padding: 0;
}

.region--footer {
  background: linear-gradient(to right, #ffffff, #f5ffd1);
  color: #535352;
  padding-top: 4rem;
}

.footer-top-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
.footer-top-section .footer-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-top-section .footer-branding {
    flex-direction: column;
  }
}
.footer-top-section .footer-logo {
  height: 50px;
}
.footer-top-section .footer-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-main-section {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid .block h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #21b55a;
  margin-bottom: 0.5rem;
}
.footer-grid .block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid .block li {
  margin-bottom: 0.5rem;
}
.footer-grid .block .navbar-nav .nav-link {
  padding-left: 0;
}
.footer-grid .block a {
  text-decoration: none;
  color: #535352;
}
.footer-grid .block a:hover {
  color: #21b55a;
  text-decoration: underline;
}

#block-siclife-theme-footercontactinformation h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #21b55a;
  margin-bottom: 0.5rem;
}
#block-siclife-theme-footercontactinformation h2:first-child {
  margin-top: 0;
}
#block-siclife-theme-footercontactinformation p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0.5rem 0 0 0;
  max-width: 100%;
}
#block-siclife-theme-footercontactinformation .social-links {
  font-size: 1.5rem;
  color: #21b55a;
  text-decoration-line: none;
}
#block-siclife-theme-footercontactinformation .social-links:hover {
  color: #199c4b;
}

.region--footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.product-hero {
  background-color: #eff7f2;
  padding: 3rem 0;
}
.product-hero__layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .product-hero__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .product-hero__text {
    text-align: center;
    order: 2;
  }
}
.product-hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-hero__summary {
  font-size: 1.2rem;
  color: #535352;
  max-width: 500px;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .product-hero__summary {
    margin-left: auto;
    margin-right: auto;
  }
}
.product-hero__cta a {
  width: fit-content;
}
@media (max-width: 992px) {
  .product-hero__image {
    order: 1;
    margin-bottom: 2rem;
  }
}
.product-hero__image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 16px;
  object-fit: cover;
}

.product-main-content {
  padding: 3em 0;
}

.product-body-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}
@media (max-width: 992px) {
  .product-body-layout {
    grid-template-columns: 1fr;
  }
}
.product-body-layout .field__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #21b55a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.product-body-layout .field__label:first-child {
  margin-top: 0;
}
.product-body-layout .field__item p {
  max-width: none;
  margin: 0 0 2em 0;
  font-size: 1.1rem;
}
.product-body-layout__main h2,
.product-body-layout__main h3 {
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.product-body-layout__main h2:first-child,
.product-body-layout__main h3:first-child {
  margin-top: 0;
}
.product-body-layout__main p,
.product-body-layout__main li {
  line-height: 1.8;
}
.product-body-layout .product-body__sidebar h4 {
  color: #21b55a;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-body-layout .product-body__sidebar details {
  border: none;
}
.product-body-layout .product-body__sidebar .faq-item {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 1.25rem;
}
.product-body-layout .product-body__sidebar .faq-item summary.faq-question {
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  transition: margin 0.2s ease-out;
}
.product-body-layout .product-body__sidebar .faq-item summary.faq-question::-webkit-details-marker {
  display: none;
}
.product-body-layout .product-body__sidebar .faq-item summary.faq-question::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #21b55a;
  transition: transform 0.3s ease;
}
.product-body-layout .product-body__sidebar .faq-item[open] > summary.faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
.product-body-layout .product-body__sidebar .faq-item[open] > summary.faq-question {
  margin-bottom: 1rem;
}
.product-body-layout .product-body__sidebar .faq-item .faq-answer {
  padding-top: 0.5rem;
  color: #535352;
  line-height: 1.7;
}
.product-body-layout .product-body__sidebar .faq-item .faq-answer p {
  font-size: 1rem;
}

.product-next-steps {
  padding: 0 0 4rem 0;
}
.product-next-steps .cta-block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
  background-size: cover;
  background-position: center;
}
.product-next-steps .cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 110, 53, 0.8352941176), rgba(50, 212, 101, 0.1803921569));
  z-index: 1;
}
.product-next-steps .cta-block > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .product-next-steps .cta-block {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.product-next-steps .cta-block .cta-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}
.product-next-steps .cta-block .cta-content p {
  font-size: 1rem;
  color: #ffffff;
}
.product-next-steps .cta-block .cta-content a {
  width: fit-content;
}

.post-page .post-hero {
  padding: 2rem 0 8rem 0;
  text-align: center;
  background-color: #eff7f2;
}
.post-page .post-hero__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-weight: 400;
  color: #d1d1d1;
  margin-bottom: 1rem;
}
.post-page .post-hero__meta .meta-separator {
  width: 4px;
  height: 4px;
  background-color: #d1d1d1;
  border-radius: 50%;
}
.post-page .post-hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.post-page .post-hero__summary {
  font-size: 1.2rem;
  color: #535352;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.post-page .post-featured-image img {
  aspect-ratio: 1600/900;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 500px;
  max-width: 700px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: -8rem;
  justify-self: center;
}
.post-page .post-main-content-area {
  padding-bottom: 5rem;
}
.post-page .post-page .post-layout-grid {
  display: grid !important;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  border: 2px solid red;
}
@media (max-width: 992px) {
  .post-page .post-page .post-layout-grid {
    grid-template-columns: 1fr;
  }
}
.post-page .post-body {
  padding: 4em 0;
}
.post-page .post-body h2,
.post-page .post-body h3,
.post-page .post-body h4 {
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #3c3c3a;
}
.post-page .post-body p,
.post-page .post-body li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #535352;
  margin-bottom: 1.5rem;
}
.post-page .post-body ul {
  padding-left: 1.5rem;
  max-width: 700px;
  justify-self: center;
}
.post-page .post-body a {
  color: #21b55a;
  text-decoration: underline;
  font-weight: 600;
}
.post-page .post-sidebar h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.post-page .post-sidebar .related-articles-placeholder {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
}

.block-block-content .video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  border-radius: 16px;
  background-color: #000;
  height: 450px;
}
.block-block-content .video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  min-width: 100%;
  height: 100vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.view-company-timeline .view-content {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
}
.view-company-timeline .view-content::after {
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(183deg, #4caf50, transparent);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.view-company-timeline .views-row {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
.view-company-timeline .views-row:nth-child(odd) {
  left: 0;
}
.view-company-timeline .views-row:nth-child(odd) .timeline-content {
  text-align: right;
}
.view-company-timeline .views-row:nth-child(even) {
  left: 50%;
}
.view-company-timeline .views-row:nth-child(even) .timeline-content {
  text-align: left;
}

.timeline-dot {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 4px solid #21b55a;
  top: 24px;
  border-radius: 50%;
  z-index: 1;
}

.views-row:nth-child(odd) .timeline-dot {
  right: -8px;
}

.views-row:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  padding: 20px 30px;
  position: relative;
  border-radius: 8px;
  background-color: rgba(224, 255, 7, 0.1803921569);
  border: solid 1px greenyellow;
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: #21b55a;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.6;
}

.timeline-image {
  margin-top: 1rem;
}
.timeline-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.more-link {
  display: inline-block;
}

.more-link a {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .view-company-timeline .view-content::after {
    left: 20px;
  }
  .view-company-timeline .views-row {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
  }
  .view-company-timeline .views-row:nth-child(even) {
    left: 0;
  }
  .view-company-timeline .views-row .timeline-content {
    text-align: left !important;
  }
  .timeline-dot {
    left: 12px !important;
  }
}
.node--type-page.node--view-mode-full .layout--onecol:first-of-type {
  width: 100%;
  padding: 0;
  margin: 0;
}
.node--type-page.node--view-mode-full .layout--onecol:first-of-type .layout__region--content {
  background: radial-gradient(127% 343% at 50% -243%, #ebff3c 69%, #f7ffab 85%, #ffffff 100%);
  text-align: center;
  padding: 5rem 8%;
}
@media (max-width: 992px) {
  .node--type-page.node--view-mode-full .layout--onecol:first-of-type .layout__region--content {
    padding: 5rem 0rem;
  }
}
.node--type-page.node--view-mode-full .layout--onecol:first-of-type .layout__region--content h2 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.node--type-page.node--view-mode-full .layout--onecol:first-of-type .layout__region--content p {
  font-size: 1.1rem;
  margin: 1rem auto 2rem;
  color: #535352;
}
.node--type-page.node--view-mode-full .layout--onecol:first-of-type .layout__region--content .video-wrapper {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .node--type-page.node--view-mode-full .layout--onecol:first-of-type .layout__region--content .video-wrapper {
    border-radius: 0px;
  }
}

.layout {
  margin-bottom: 2rem;
}

.our-story-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  padding: 5rem 8%;
}
@media (max-width: 992px) {
  .our-story-section {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
  }
}
.our-story-section .layout__region--first .block {
  background-color: #eff7f2;
  padding: 2.5rem;
  border-radius: 16px 0 0 16px;
  height: 100%;
}
@media (max-width: 992px) {
  .our-story-section .layout__region--first .block {
    border-radius: 16px 16px 0 0;
  }
}
.our-story-section .layout__region--first h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.our-story-section .layout__region--first p {
  max-width: none;
}
.our-story-section .our-story-img {
  background-color: #eff7f2;
  overflow: hidden;
  height: 100%;
  border-radius: 0 16px 16px 0;
}
@media (max-width: 992px) {
  .our-story-section .our-story-img {
    border-radius: 0 0 16px 16px;
  }
}
.our-story-section .our-story-img .block,
.our-story-section .our-story-img .field,
.our-story-section .our-story-img .media,
.our-story-section .our-story-img .field__item {
  height: 100%;
  align-items: end;
  display: flex;
}
.our-story-section .our-story-img img {
  object-fit: contain;
  width: 100%;
}

.awards-and-recogntion {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 2rem 8% 0 8%;
}
.block-views-block-awards-list-block-1 > h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.awards-list {
  padding: 2rem 8%;
  align-self: center;
}
@media (max-width: 992px) {
  .awards-list {
    padding: 2rem 2%;
  }
}

.view-awards-list .view-content {
  column-count: 2;
  column-gap: 3rem;
}
.view-awards-list .view-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  background: #005132;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 992px) {
  .view-awards-list .view-content {
    column-count: 1;
  }
}

.view-awards-list .view-grouping-header {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-top: 3rem;
}
.view-awards-list .view-grouping-header:first-child {
  margin-top: 0;
}
.view-awards-list .view-grouping-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #21b55a;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.view-awards-list .view-grouping-content {
  padding-left: 1.5rem;
}

.view-awards-list .views-row {
  margin-bottom: 2rem;
  break-inside: avoid;
  page-break-inside: avoid;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
  position: relative; /* <-- ADDED FOR POSITIONING CONTEXT */
}
.view-awards-list .views-row .views-field-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3c3c3a;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
}
.view-awards-list .views-row .views-field-title::before {
  content: "\f5e6";
  font-family: "bootstrap-icons";
  color: #ebd35b;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}
.view-awards-list .views-row .views-field-field-award-details {
  font-size: 1rem;
  color: #535352;
  padding-left: 1.95rem;
  text-align: left;
}
.view-awards-list .views-row .views-field-field-award-details p {
  margin: 0;
}

.core-values,
.our-history,
.awards-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.core-values h2,
.our-history h2,
.awards-list h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.core-values-grid {
  width: 100%;
  padding: 0 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 992px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }
}
.core-values-grid .layout__region,
.core-values-grid .block,
.core-values-grid .field {
  height: 100%;
}
.core-values-grid .value-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.core-values-grid .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.core-values-grid .value-card .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: #eff7f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-values-grid .value-card .icon {
  font-size: 2.5rem;
  color: #21b55a;
}
.core-values-grid .value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3c3c3a;
  margin: 0 0 0.5rem 0;
}
.core-values-grid .value-card p {
  flex-grow: 1;
  margin-bottom: 0;
}

.mission-and-vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  justify-items: stretch;
  padding: 5rem 8%;
}
.mission-and-vision-section .section-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mission-and-vision-section .section-left .section-up {
  background-color: #005132;
  padding: 2.5rem;
  border-radius: 16px;
  height: fit-content;
}
.mission-and-vision-section .section-left .section-up h2,
.mission-and-vision-section .section-left .section-up p {
  color: white;
}
.mission-and-vision-section .section-left .section-bottom {
  background-color: #fdf21c;
  padding: 2.5rem;
  border-radius: 16px;
  height: fit-content;
}
.mission-and-vision-section .section-right {
  background-color: #eff7f2;
  padding: 1.5rem;
  border-radius: 16px;
  height: 100%;
}
.mission-and-vision-section .section-right ul {
  list-style: none;
  padding-inline-start: 0px;
}
.mission-and-vision-section .section-right li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}
.mission-and-vision-section .section-right ::before {
  content: "\f26a";
  color: #ebd35b;
  position: absolute;
  font-family: "bootstrap-icons";
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: start;
  width: 30px;
  height: 30px;
}
.mission-and-vision-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #3c3c3a;
}
.mission-and-vision-section p {
  max-width: none;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .mission-and-vision-section {
    grid-template-columns: 1fr;
  }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #005132;
  padding: 2rem 8%;
}
@media (max-width: 992px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

.stat-item-first,
.stat-item-middle,
.stat-item-last {
  background-color: #1e634c;
  color: white;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 100%;
}

.stat-item-first {
  border-radius: 16px 0 0 16px;
}
@media (max-width: 992px) {
  .stat-item-first {
    border-radius: 16px 0 0 0px;
  }
}
@media (max-width: 576px) {
  .stat-item-first {
    border-radius: 16px 16px 0 0;
  }
}

@media (max-width: 992px) {
  .stat-item-middle {
    border-radius: 0 16px 0 16px;
  }
}
@media (max-width: 576px) {
  .stat-item-middle {
    border-radius: 0;
  }
}

.stat-item-last {
  border-radius: 0 16px 16px 0;
}
@media (max-width: 992px) {
  .stat-item-last {
    border-radius: 0 0 16px 0;
  }
}
@media (max-width: 576px) {
  .stat-item-last {
    border-radius: 0 0 16px 16px;
  }
}

.stats-bar .field--name-field-icon i {
  font-size: 2.5rem;
  color: #fdf21c;
}
.stats-bar .field--name-field-stat-prefix {
  display: none;
}
.stats-bar .field--name-field-stat-prefix + .field--name-field-stat-value::before {
  /* This is where the magic happens */
  content: "GHS";
  /* Inserts the prefix content */
  /* Now, style the injected "GHS" prefix */
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  /* Space between prefix and value */
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.9;
  color: white;
  /* Or inherit from parent */
}
.stats-bar .field--name-field-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.stats-bar .field--name-field-stat-prefix + .field--name-field-stat-value {
  display: inline-block;
  vertical-align: baseline;
}
.stats-bar .field--name-field-description {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8bdda9;
}

.association-section {
  width: 100%;
  padding: 2rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  .association-section {
    padding: 2rem 2%;
  }
}
.association-section .section-title {
  width: 100%;
  padding: 2rem;
  flex-wrap: nowrap;
}
.association-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  align-self: center;
}
.association-section .association-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .association-section .association-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .association-section .association-grid {
    grid-template-columns: 1fr;
  }
}
.association-section .association-grid .association-item {
  max-width: auto;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: solid 1px greenyellow;
}
.association-section .association-grid .association-item img {
  max-height: 100px;
  object-fit: contain;
}

.join-us-section {
  margin: 4rem 8% !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.join-us-section .join-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.join-us-section .join-us-content {
  padding: 2rem 3rem;
  background: linear-gradient(to right, #ebfff4, #d3f0de);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.join-us-section .join-us-content .pre-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: #3c3c3a;
  letter-spacing: 1px;
}
.join-us-section .join-us-content .field--name-field-pre-title {
  font-family: "montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #21b55a;
  margin-bottom: 1rem;
}
.join-us-section .join-us-content a::after {
  content: "\f138";
  font-family: "bootstrap-icons";
  margin-left: 0.5rem;
}

.our-leadership-section {
  margin-bottom: 6rem;
}
.our-leadership-section .p1 {
  max-width: none;
}

.pre-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: #3c3c3a;
  letter-spacing: 1px;
  font-family: "montserrat", sans-serif;
  margin-bottom: 1rem;
  font-weight: 600;
}

.executive-mgt-section {
  width: 100%;
  padding: 2em 8%;
  display: flex;
  flex-direction: column;
  align-items: start;
  /*
  ============================================
  LEADERSHIP GRID STYLES
  ============================================
  */
  /* --- Remove default Views grid styling (this can stay) --- */
}
.executive-mgt-section .leadership-grid .view-content {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  text-align: left;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .executive-mgt-section .leadership-grid .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .executive-mgt-section .leadership-grid .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.executive-mgt-section .leadership-grid .view-content .views-row {
  border: 1px solid #e0e6ed;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.executive-mgt-section .leadership-grid .view-content .views-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.executive-mgt-section .leadership-grid .view-content .views-field-field-photo {
  max-height: 30rem;
}
.executive-mgt-section .leadership-grid .view-content .views-field-field-photo img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 1.5rem auto;
  background-position: center top;
  object-position: center top;
}
.executive-mgt-section .leadership-grid .view-content .views-field-field-full-name a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3c3c3a;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.executive-mgt-section .leadership-grid .view-content .views-field-field-full-name a:hover {
  color: #21b55a;
}
.executive-mgt-section .leadership-grid .view-content .views-field-field-title-position {
  color: #555;
  font-size: 1rem;
}
.executive-mgt-section .views-view-grid .views-col {
  width: auto !important;
}
.executive-mgt-section .views-view-grid .views-row {
  clear: none !important;
}

/*
============================================
MODAL POP-UP STYLES (TRANSPARENT TITLE BAR)
============================================
*/
.ui-widget-overlay {
  background: #000;
  opacity: 0.6;
  z-index: 1050;
}

.ui-dialog.ui-widget:not(.gin-dialog) {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  padding: 0;
  z-index: 1055;
  /* Optional: adjust modal title bar so close button isn’t cramped */
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-titlebar {
  background: transparent;
  border: none;
  padding: 1.5rem 1.5rem 0 1.5rem;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-titlebar .ui-dialog-title {
  display: none;
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-titlebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem; /* bigger hit area */
  height: 2.5rem;
  border: none;
  background: transparent;
  font-size: 1.5rem; /* icon size */
  color: #555;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  z-index: 10;
  display: flex; /* center icon inside */
  align-items: center;
  justify-content: center;
  /* Remove Drupal’s default jQuery UI icon */
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-titlebar-close .ui-icon {
  display: none;
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-titlebar-close::before {
  font-family: "bootstrap-icons";
  content: "\f623"; /* bi-x-lg */
  display: block;
  font-size: 1.5rem;
  line-height: 1; /* prevents tall clickable gap */
  pointer-events: none; /* ensure clicks go to button, not glyph */
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-titlebar-close:hover {
  opacity: 1;
  color: #000;
  background-color: rgba(0, 0, 0, 0.05); /* optional hover feedback */
  border-radius: 50%; /* nice circular hover effect */
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-titlebar {
  position: relative;
  padding-right: 3rem; /* ensures space for close button */
}
.ui-dialog.ui-widget:not(.gin-dialog) .ui-dialog-content {
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
}

.modal-image img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background-position: center top;
  object-position: center top;
  overflow: hidden;
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.modal-info .person-title {
  margin: 0;
}
.modal-info .person-name {
  font-size: 3rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .ui-dialog.ui-widget:not(.gin-dialog) {
    width: 95vw !important;
    left: 2.5vw !important;
  }
}
/* ===============================
   Inline submenu styling
   =============================== */
.dropdown-menu .submenu-list {
  padding-left: 1rem;
  margin: 0.25rem 0 0.75rem 0;
}

.dropdown-menu .submenu-list .dropdown-item {
  padding-left: 2rem;
}

.dropdown-menu .dropdown-header {
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem 0.25rem;
  color: #333;
  font-size: 0.95rem;
  text-transform: uppercase;
}

/* ===============================
   Mega Menu Styling
   =============================== */
.dropdown-menu.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  max-width: none;
  margin-top: 0;
  border-radius: 0 0 16px 16px;
  padding: 2rem;
  border-top: 3px solid #21b55a;
}
@media screen and (max-width: 576px) {
  .dropdown-menu.mega-menu {
    padding: 0rem;
  }
}

.dropdown-menu.mega-menu .row {
  display: flex;
  flex-wrap: wrap;
}

.mega-menu-col {
  padding: 0 1rem;
  min-width: 220px;
}

.mega-menu-col .dropdown-header {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.25rem;
}

.mega-menu-col .submenu-list .dropdown-item {
  padding: 0.25rem 0;
  white-space: normal;
}

.mega-menu-col .row > .col-6 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu.mega-menu {
    position: static;
    width: auto;
    max-height: 70vh;
    overflow-y: auto;
    border: none;
    box-shadow: none;
    background-color: transparent;
  }
  .mega-menu-col {
    padding: 0;
  }
}
/*Job Openings*/
.jobs-hero .layout__region--content {
  background: #fff !important;
}

.jobs-list {
  background: #f8f8f8;
  padding: 3rem 0;
}

.jobs-list .layout {
  margin-bottom: 0;
}

/* CAREER PAGE STYLES`
   --------------------------------------------------
*/
/* Main wrapper for the entire view */
.careers-page-view {
  max-width: 1100px;
  margin: 40px auto;
  font-family: sans-serif;
  color: #333;
}

.careers-page-view .view-content > h3 {
  color: #005132;
  margin-top: 40px;
  margin-bottom: 5px;
}

/* Container for the exposed filter dropdowns */
.views-exposed-form {
  margin-bottom: 50px;
  width: 100%;
}
.views-exposed-form .form--inline {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .views-exposed-form .form--inline {
    flex-direction: column;
    gap: 15px;
  }
}
.views-exposed-form .form--inline .js-form-item {
  flex: 1;
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .views-exposed-form .form--inline .js-form-item {
    margin-right: 0;
  }
}
.views-exposed-form .form--inline .js-form-item:nth-child(2) {
  margin-right: 0;
}

/* Style for the dropdowns */
.views-exposed-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background-color: white;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Header for each department group (e.g., "Data Science and Analytics") */
.view-grouping .view-grouping-header {
  font-size: 28px;
  font-weight: 600;
  color: #005132;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* Card for each individual job posting */
.careers-page-view .views-row {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
  position: relative; /* <-- ADDED FOR POSITIONING CONTEXT */
}

.careers-page-view .views-row:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Department name inside the card */
.job-department-name {
  font-size: 14px;
  color: #21b55a;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 5px 0;
}

/* Job title */
.job-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #3c3c3a;
}

.job-title-link {
  text-decoration: none;
  color: inherit;
}

/* Wrapper for location and employment type */
.job-meta-info {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between location and employment type */
}

/* Location text */
.job-location {
  font-size: 16px;
  color: #555;
  position: relative;
  padding-left: 24px; /* Space for the icon */
}

.field-content,
.job-location > body p {
  margin: 0px auto 0.5rem;
}

/* Location pin icon */
.job-location::before {
  content: "\f3e8"; /* Bootstrap Icons code for 'geo-alt-fill' */
  font-family: "bootstrap-icons";
  color: #888;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 16px;
}

/* Tag for "Remote" or "Hybrid" */
.job-work-style {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .views-exposed-form {
    grid-template-columns: 1fr;
  }
  .views-row {
    flex-direction: column;
  }
  .job-work-style {
    width: fit-content;
    justify-self: start;
  }
}
/* Apply button, positioned top-right */
.job-application-link a {
  position: absolute;
  top: 25px;
  right: 25px;
  transition: background-color 0.3s ease;
}

.job-application-link a:hover {
  background-color: #199c4b;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .views-row {
    padding-bottom: 80px; /* Add space for the button at the bottom */
  }
  .job-title {
    padding-right: 0; /* Remove padding on mobile */
  }
  .job-application-link a {
    top: auto;
    bottom: 25px;
    left: 25px;
    right: 25px;
    text-align: center; /* Center the text */
  }
}
/* CONTACYT PAGE STYLES
---------------------------------------
*/
.contact-form-section {
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 16px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .contact-form-section {
    grid-template-columns: 1fr;
  }
}
.contact-form-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-form-section .contact-info {
  padding: 2rem;
  background-color: #eff7f2;
  display: flex;
  flex-direction: column;
}
.contact-form-section .contact-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #535352;
}
.contact-form-section .contact-info .call-us {
  display: flex;
  margin-bottom: 2rem;
}
.contact-form-section .contact-info .call-us a {
  font-size: 1.1rem;
  color: #535352;
  text-decoration: none;
}
.contact-form-section .contact-info .call-us a:hover {
  text-decoration: underline;
}
.contact-form-section .contact-info .call-us p {
  margin: 0;
  font-size: 1.1rem;
}
.contact-form-section .contact-info .call-us i {
  font-size: 1rem;
  color: #21b55a;
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}
.contact-form-section .contact-info .call-us span {
  font-size: 1rem;
  color: #535352;
}
.contact-form-section .contact-info iframe {
  border-radius: 12px;
  height: 300px;
}
.contact-form-section .contact-info p {
  margin: 0;
}
.contact-form-section .contact-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.contact-form-section .contact-form p {
  margin: 0;
}
.contact-form-section .contact-form #my-form {
  margin-top: 2rem;
}
.contact-form-section .contact-form #my-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form-section .contact-form #my-form input[type=text],
.contact-form-section .contact-form #my-form input[type=email],
.contact-form-section .contact-form #my-form input[type=tel],
.contact-form-section .contact-form #my-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.contact-form-section .contact-form #my-form input[type=text]:focus,
.contact-form-section .contact-form #my-form input[type=email]:focus,
.contact-form-section .contact-form #my-form input[type=tel]:focus,
.contact-form-section .contact-form #my-form textarea:focus {
  outline: none;
  border-color: #d3f0de;
  box-shadow: 0 0 0 1px #199c4b;
}
.contact-form-section .contact-form #my-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form-section .contact-form #my-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form-section .contact-form #my-form .phone-input-wrapper {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.contact-form-section .contact-form #my-form .phone-input-wrapper:focus-within {
  border-color: #d3f0de;
  box-shadow: 0 0 0 1px #199c4b;
}
.contact-form-section .contact-form #my-form .phone-input-wrapper .country-code-selector {
  position: relative;
}
.contact-form-section .contact-form #my-form .phone-input-wrapper .country-code-selector select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  padding: 0.75rem 2rem 0.75rem 1rem;
  color: #535352;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.contact-form-section .contact-form #my-form .phone-input-wrapper .country-code-selector select:focus {
  outline: none;
}
.contact-form-section .contact-form #my-form .phone-input-wrapper .country-code-selector::after {
  content: "▼";
  font-size: 0.6rem;
  color: #535352;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-form-section .contact-form #my-form .phone-input-wrapper input[type=tel] {
  background-color: transparent;
  border: none;
}
.contact-form-section .contact-form #my-form .phone-input-wrapper input[type=tel]:focus {
  box-shadow: none;
}
.contact-form-section .contact-form #my-form #my-form-button {
  width: 100%;
  background-color: #21b55a;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.contact-form-section .contact-form #my-form #my-form-button:hover {
  background-color: #199c4b;
}
.contact-form-section .contact-form #my-form #my-form-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.contact-form-section .contact-form #my-form #my-form-status {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.contact-form-section .contact-form #my-form #my-form-status.success {
  color: #059669;
}
.contact-form-section .contact-form #my-form #my-form-status.error {
  color: #dc2626;
}

/*
  BRANCH SECTION STYLES
*/
/*
  This SCSS is structured with nesting. 
  It assumes it will be processed by an SCSS compiler.
*/
.branch-section {
  margin-top: 4rem;
  /* Target the inner region as the new flex container */
  /* The left column containing the map */
  /* The right column containing the branch cards */
  /* Styles for the View containing the branch cards */
  /* Removes the default margins from paragraphs inside the address field */
  /* Branch Name (Title) */
  /* Common styles for address and phone fields */
  /* Specific icon for the Address field */
  /* Specific icon for the Phone field */
  /* --- UPDATED: Responsive adjustments for mobile --- */
}
.branch-section .layout__region--content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.branch-section .map-column {
  flex-basis: 33.33%;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  flex-shrink: 0;
}
.branch-section .map-column h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  align-self: center;
}
.branch-section .branch-network {
  flex-basis: 66.67%;
}
.branch-section .branch-network-view {
  /* The main card for each branch */
}
.branch-section .branch-network-view .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0;
  /* Responsive adjustment for tablets */
}
@media (max-width: 1024px) {
  .branch-section .branch-network-view .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.branch-section .branch-network-view .views-row {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}
.branch-section .branch-network-view .views-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.branch-section .branch-address p {
  margin: 0;
  padding: 0;
}
.branch-section .branch-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
}
.branch-section .branch-address,
.branch-section .branch-contact {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
  /* Icon styling using the ::before pseudo-element */
}
.branch-section .branch-address::before,
.branch-section .branch-contact::before {
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: #21b55a;
  font-size: 1.1rem;
}
.branch-section .branch-address::before {
  content: "\f3e7";
}
.branch-section .branch-contact::before {
  content: "\f5b4";
}
@media (max-width: 768px) {
  .branch-section .layout__region--content {
    flex-direction: column;
    gap: 0; /* Removing gap for better mobile compatibility; using margin instead. */
  }
  .branch-section .map-column {
    margin-bottom: 30px; /* Recreates the vertical space between map and cards */
  }
  .branch-section .map-column,
  .branch-section .branch-network {
    width: 100%; /* Explicitly set width to fill the container */
    flex-basis: auto; /* Reset flex-basis for stacked layout */
    position: static; /* Un-stick the map on mobile */
  }
  .branch-section .branch-network-view .view-content {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
}

/*
"Connect With Us" Section
*/
.social-media {
  padding: 2em;
  margin-top: 4rem;
  background-color: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
}
.social-media h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #32d466, #1a6e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.social-media p {
  text-align: center;
  font-size: 1.1rem;
  color: #535352;
  margin-bottom: 2rem;
}
.social-media .social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.social-media .social-card {
  perspective: 1000px;
}
.social-media .social-card .social-card-inner {
  position: relative;
  width: 100%;
  height: 200px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.social-media .social-card:hover .social-card-inner {
  transform: rotateY(180deg);
}
.social-media .social-card .social-card-front,
.social-media .social-card .social-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  color: #fff;
  background-color: #21b55a;
}
.social-media .social-card .social-card-front h4 {
  margin-bottom: 1rem;
  color: #fff;
}
.social-media .social-card .social-card-front i {
  font-size: 2.5rem;
  color: #fff;
}
.social-media .social-card .social-card-back {
  background-color: #199c4b;
  transform: rotateY(180deg);
}
.social-media .social-card .social-card-back a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.laurel-achievements {
  margin-top: 50px;
  display: flex;
  gap: 24px;
}

@media (max-width: 767.98px) {
  /* Reduce outer padding so we don't double-pad with hero-content */
  .hero-container {
    padding: 0 1.25rem;
  }
  /* Stack hero content vertically and let height be natural */
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 90vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  /* Text column */
  .hero-content > div:first-child {
    max-width: 100%;
    margin: 0;
  }
  .hero-content > div:first-child h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 100px;
  }
  .hero-content > div:first-child p {
    font-size: 1rem;
  }
  /* Stack CTAs vertically, full-width */
  .hero-content .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-content .hero-cta .secondary-cta-btn, .hero-content .hero-cta .product-next-steps .cta-block .cta-content a, .product-next-steps .cta-block .cta-content .hero-content .hero-cta a,
  .hero-content .hero-cta a {
    width: 100%;
    justify-content: space-between;
  }
  /* Center and shrink laurels */
  .hero-content > div:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .hero-content img[alt=CIMG],
  .hero-content img[alt="Trusted Insurance Company"] {
    max-width: 40%;
    height: auto;
  }
  /* Slightly reduce the overlap of the campaign slider */
  .floating-banner-region {
    margin-top: -4rem;
    width: 95%;
  }
  .laurel-achievements {
    margin-top: 0;
  }
  .hero-image img {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-image img {
    max-width: none;
  }
}

/*# sourceMappingURL=style.css.map */
