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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: Roboto, sans-serif;
  line-height: 1.5;
  color: #222;
  overflow-x: hidden;
  width: 100%;
}

/* Smart sticky nav: body gets top padding only when header is visible */
body.body--nav-offset {
  padding-top: var(--nav-offset, 0px);
  transition: padding-top 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

main {
  width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  box-sizing: border-box;
}

/* ---------------------- */
/* NAVIGACIJA */
/* ---------------------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  transform: translateY(0);
  transition: transform 0.25s ease;
  will-change: transform;
}

.site-header.site-header--hidden {
  transform: translateY(-100%);
}

.nav__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  width: 150px;
  display: block;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav__links li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  position: relative;
  display: block;
  transition: color 0.2s ease;
}

.nav__links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav__links a:hover {
  color: #222;
}

.nav__links a:hover::before {
  transform: scaleX(1);
}


/* Dropdown Navigation - Main dropdown (click) */
.nav__item--dropdown {
  position: relative;
}

.nav__link--dropdown-toggle {
  cursor: pointer;
  position: relative;
  padding: 0;
}

.nav__link--dropdown-toggle::after {
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav__item--dropdown.active .nav__link--dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 8px 0;
  list-style: none;
  z-index: 1000;
  margin-top: 4px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}

.nav__item--dropdown.active .nav__dropdown {
  display: block;
}

.nav__dropdown > li {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav__dropdown > li > a {
  display: block;
  width: 100%;
  padding: 12px 24px;
  color: #1D215F;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin: 0;
  border-top: none;
  box-sizing: border-box;
  border-radius: 0;
}

.nav__dropdown > li:first-child > a {
  border-radius: 8px 8px 0 0;
}

.nav__dropdown > li:last-child > a {
  border-radius: 0 0 8px 8px;
}

.nav__dropdown > li:only-child > a {
  border-radius: 8px;
}

.nav__dropdown > li > a::before {
  display: none;
  content: none;
}

.nav__dropdown > li > a:hover {
  background: #1D215F;
  color: #fff;
  border-top: none;
}

.nav__dropdown > li > a:hover::before {
  display: none;
  content: none;
}

/* Sub-dropdown (hover) */
.nav__dropdown-item--has-submenu > a::after {
  content: '▶';
  font-size: 10px;
  margin-left: 8px;
  float: right;
  color: #1D215F;
  transition: color 0.2s ease;
}

.nav__dropdown-item--has-submenu > a:hover::after {
  color: #fff;
}

.nav__subdropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  margin-left: -8px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: opacity 0.15s ease, visibility 0s linear 0.2s;
}

/* Invisible bridge: continuous hover area from first-level item to submenu (no gap) */
.nav__subdropdown::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 20px;
}

.nav__dropdown-item--has-submenu:hover > .nav__subdropdown,
.nav__dropdown-item--has-submenu > .nav__subdropdown:hover {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s ease, visibility 0s;
}

.nav__subdropdown li {
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav__subdropdown a {
  display: block;
  width: 100%;
  padding: 10px 24px;
  color: #1D215F;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin: 0;
  border-top: none;
  box-sizing: border-box;
  border-radius: 0;
}

.nav__subdropdown li:first-child > a {
  border-radius: 8px 8px 0 0;
}

.nav__subdropdown li:last-child > a {
  border-radius: 0 0 8px 8px;
}

.nav__subdropdown li:only-child > a {
  border-radius: 8px;
}

.nav__subdropdown a::before {
  display: none;
  content: none;
}

.nav__subdropdown a:hover {
  background: #1D215F;
  color: #fff;
  border-top: none;
}

.nav__subdropdown a:hover::before {
  display: none;
  content: none;
}

.nav__link--cta {
  background: #001E5A;
  color: #fff !important;
  padding: 8px 30px !important;
  border-radius: 30px;
  transition: background-color 0.4s ease;
  position: relative;
  font-weight: 600;
}

.nav__link--cta::before {
  display: none;
  content: none;
}

.nav__link--cta:hover {
  background: #fff;
  color: #001E5A !important;
  border: 2px solid #001E5A;
  transition: background-color 0.4s ease;
}

.nav__link--cta:hover::before {
  display: none;
  content: none;
}

/* ---------------------- */
/* BREADCRUMB NAVIGATION */
/* ---------------------- */
.breadcrumb {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 12px 0;
}

.breadcrumb__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item::after {
  content: '›';
  color: #6c757d;
  font-size: 12px;
  margin-left: 4px;
}

.breadcrumb__item:last-child::after {
  display: none;
}

.breadcrumb__item a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
  color: #001E5A;
}

.breadcrumb__item--current {
  color: #222;
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px 0;
  }

  .breadcrumb__container {
    padding: 0 16px;
  }

  .breadcrumb__list {
    font-size: 13px;
  }
}

/* ---------------------- */
/* HERO SEKTOR */
/* ---------------------- */

.hero {
  position: relative;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: #fff;
  width: 90%;
  max-width: 800px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__image img {
  width: 100%;
  height: auto;
}

.hero__image--mobile {
  display: none !important;
}

.hero__image--desktop {
  display: block !important;
}

/* ---------------------- */
/* SEKCIJA KARTICA */
/* ---------------------- */

.cards-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.cards-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
}

.cards-section h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #001E5A;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2px;
  font-weight: 400;
  line-height: 1.6;
}

.section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

/* GRID 6 KARTICA */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* KARTICA */
.card {
  border: 1px solid #ddd;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.card h3, .card p {
  padding: 10px 20px;
}

.card h3 {
  font-weight: 600;
}

.card__title {
  margin: 5px 0;
  font-size: 20px;
  text-align: left;
  color: #001E5A;
  padding: 10px 20px 5px 20px;
}

.card__desc {
  font-size: 15px;
  margin: 0;
  padding: 0 20px;
  color: #001E5A;
  text-align: left;
  flex-grow: 1;
  min-height: 0;
}

.card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card__desc sup {
  font-size: 0.7em;
  vertical-align: super;
}

.card__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 0;
  padding: 20px 20px 20px 20px;
  align-items: center;
  flex-shrink: 0;
}

.card__actions .btn {
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 0px;
}

.card__actions .btn:first-child {
  border: 2px solid #001E5A;
}

.btn-primary {
  background: #fff;
  color: #001E5A;
}

.btn-secondary {
  background: #001E5A;
  color: #fff;
}

.card__meta {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  padding: 0 20px 20px 20px;
}

/* ---------------------- */
/* VELIKA HORIZONTALNA KARTICA */
/* ---------------------- */

.large-card {
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  background: #fff;
}

.large-card__image {
  flex: 1;
}

.large-card__content {
  flex: 1.4;
}

.large-card__content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #001E5A;
  text-align: left;
}

.large-card__content p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #001E5A;
}

.large-card__actions {
  margin-top: 20px;
}

.large-card__actions .btn {
  display: inline-block;
  text-decoration: none;
}

/* ---------------------- */
/* FOOTER */
/* ---------------------- */

.site-footer {
  background: #EEEEEE;
  color: #001E5A;
  padding: 50px 20px;
}

.footer__container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__col img {
  width: 150px;
  margin-bottom: 20px;
  align-items: center;
}

.footer__logo-link {
  display: inline-block;
  padding: 0;
  margin: 0;
  line-height: 0;
  text-decoration: none;
}

.footer__logo-link img {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
  vertical-align: middle;
}


.footer__logo-link img:last-child {
  margin-right: 0;
}

.footer__col h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 5px;
}

.footer__col a {
  color: #001E5A;
  text-decoration: none;
}

.footer__description {
  margin-top: 15px;
  font-size: 14px;
  color: #001E5A;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  list-style: none;
}

.footer__social li {
  margin: 0;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #001E5A;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer__social i {
  font-size: 30px;
}

.footer__phc-logo {
  margin-top: 20px;
}

.footer__phc-logo img {
  width: 80px;
  height: auto;
}

.footer__trademarks {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 15px;
  color: #001E5A;
}

/* Donji tekst */
.footer__bottom-text {
  text-align: left;
  padding-top: 20px;
  color: #001E5A;
  font-size: 15px;
}


/* ---------------------- */
/* GDE KUPITI IMAGES SECTION */
/* ---------------------- */

.images-section {
  background-color: #FEFEFE;
  padding: 60px 20px;
}

.images-section__container {
  max-width: 1300px;
  margin: 0 auto;
}

.images-section__title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 40px;
}

.images-section__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-card {
  position: relative;
  width: 100%;
}

.image-card__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-card__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}

.image-card__button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #001E5A;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.image-card__button:hover {
  background: #fff;
  color: #001E5A;
  border: 1px solid #001E5A;
}

/* Responsive */
@media(max-width: 992px) {
  .images-section__wrapper {
    gap: 20px;
    padding: 20px;
  }
}

@media(max-width: 768px) {
  .images-section {
    padding: 40px 20px;
  }

  .images-section__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .images-section__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .image-card__button {
    bottom: 15px;
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* GDE KUPITI FIZIČKA LICA */

.images-grid-section {
  background-color: #FEFEFE;
  padding: 60px 20px;
}

.images-grid-section__container {
  max-width: 1300px;
  margin: 0 auto;
}

.images-grid-section__title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 24px;
}

.images-grid-section__medinic-intro {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #001E5A;
  margin: 0 auto 20px;
}

.images-grid-section__medinic-row {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.image-grid-item--medinic {
  max-width: 400px;
}

.images-grid-section__intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  max-width: 640px;
  margin: 0 auto 28px;
}

.images-grid-section__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 u redu - desktop */
  gap: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-grid-item {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.images-grid-section__wrapper .image-grid-item {
  max-width: 300px;
  margin: 0 auto;
}

.image-grid-item img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  display: block;
  object-fit: cover;
}

.image-grid-item img:hover {
  transition: transform 0.3s ease;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .image-grid-item--medinic {
    max-width: 320px;
  }

  .images-grid-section__wrapper .image-grid-item {
    max-width: 260px;
  }

  .images-grid-section__wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 u redu - tablet */
  }
}

@media (max-width: 600px) {
  .images-grid-section__medinic-intro {
    font-size: 16px;
  }

  .images-grid-section__medinic-row {
    margin-bottom: 36px;
  }

  .image-grid-item--medinic {
    max-width: 260px;
  }

  .images-grid-section__intro {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .images-grid-section__wrapper .image-grid-item {
    max-width: 240px;
  }

  .images-grid-section__wrapper {
    grid-template-columns: 1fr; /* 1 u redu - mobile */
  }
}



/* OPŠTI USLOVI, IZJAVA O PRIVATNOSTI ITD. */
.terms-section {
  background-color: #FFFFFF;
  padding: 60px 20px; /* prostor gore/dole i sa strane */
}

.terms-container {
  max-width: 1300px;
  margin: 0 auto; /* centriranje */
}

.terms-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.terms-container p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #444;
}


/* PODRŠKA */
.support-section {
  background-color: #FEFEFE;
  padding: 60px 20px;
}

.support-section__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.support-section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 50px;
}

/* Wrapper */
.support-section__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Gornji centrirani blok */
.support-intro-block {
  text-align: center;
}

.support-intro-block__title {
  font-size: 28px;
  margin-bottom: 12px;
  color: #001E5A;
}

.support-intro-block__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Donji levi blok */
.support-info-block {
  max-width: 1300px;
}

.support-info-block__title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #001E5A;
}

.support-info-block__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #001E5A;
}

.support-info-block__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .support-info-block__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Divider */
.support-divider {
  height: 2px;
  background-color: #001E5A;
  margin-bottom: 20px;
}

.support-divider--center {
  width: 60px;
  margin: 0 auto 20px;
}

.support-divider--left {
  width: 40px;
}

/* O NAMA */

/* ---------------------- */
/* TIMELINE SECTION */
/* ---------------------- */

.timeline-section {
  background-color: #FEFEFE;
  padding: 60px 20px;
}

.timeline-section__container {
  max-width: 1300px;
  margin: 0 auto;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Vertical line - centered on desktop */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #001E5A;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline__item {
  position: relative;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Left side - year badge and text */
.timeline__left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 15px;
}

.timeline__year-badge {
  background: #001E5A;
  color: #fff;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 25px;
  white-space: nowrap;
  display: inline-block;
}

.timeline__text {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  max-width: 400px;
}

/* Dot on the line */
.timeline__dot {
  width: 18px;
  height: 18px;
  background: #001E5A;
  border-radius: 50%;
  border: 3px solid #FEFEFE;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
}

/* Right side - image */
.timeline__right {
  display: flex;
  align-items: center;
}

/* Right side - year badge + text (for alternating layout) */
.timeline__right--content {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 15px;
}

.timeline__image {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive - Mobile */
@media(max-width: 768px) {
  .timeline-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .timeline-section__container {
    width: 100%;
    box-sizing: border-box;
  }

  /* Line moves to left */
  .timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 40px; /* keep content clear of the line/dot */
  }

  /* Dot position adjusted */
  .timeline__dot {
    position: absolute;
    left: 11px; /* Align with line (20px - 9px) */
    top: 0;
  }

  /* Ensure consistent mobile content order: Year -> Text -> Image */
  .timeline__left,
  .timeline__right {
    width: 100%;
  }

  /* Default (odd items): left has text, right has image -> already correct */
  .timeline__left {
    order: 1;
  }

  .timeline__right {
    order: 3;
  }

  /* Even items: left has image, right has text -> swap */
  .timeline__item:nth-child(even) .timeline__right {
    order: 1;
  }

  .timeline__item:nth-child(even) .timeline__left {
    order: 3;
  }

  /* Left side content moves to right, change alignment */
  .timeline__left {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }

  .timeline__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Right side (image) stays in right column */
  .timeline__right {
    width: 100%;
    box-sizing: border-box;
  }

  .timeline__right--content {
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }

  .timeline__image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}



/* ---------------------- */
/* RESPONSIVE DESIGN */
/* ---------------------- */

/* TABLET */
@media(max-width: 992px) {

  .nav__logo img {
    width: 130px;
  }

  .nav__links {
    gap: 20px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .large-card {
    flex-direction: column;
    text-align: center;
  }

  .large-card__content {
    text-align: center;
  }

  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width: 768px) {

  /* NAV -> hamburger left, logo center */
  .nav__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .nav__links {
    /* Hidden by default, shown via JavaScript */
    display: none;
  }

  /* 6 kartica -> 1 u redu */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* Velika kartica */
  .large-card {
    flex-direction: column;
  }

  /* Footer 4 → 1 */
  .footer__cols {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__col img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
  }

}

/* Hamburger stil */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  position: relative;
  padding: 5px;
}

.nav__hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile - prikaz hamburgera */
@media(max-width: 768px) {
  .nav__hamburger {
    display: flex;
    order: 1;
  }

  .nav__logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav__links {
    order: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 20px 20px;
    border-top: 1px solid #ddd;
    display: none; /* po defaultu sakriven */
    z-index: 100;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__links li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav__links li a {
    display: block;
    padding: 15px 0;
    width: 100%;
  }

  .nav__links a::before {
    display: none;
  }

  .nav__link--dropdown-toggle::before {
    display: none;
  }

  .nav__link--cta::before {
    display: none;
  }

  .nav__dropdown {
    position: static;
    box-shadow: none;
    background: #fff;
    margin-top: 0;
    margin-left: 0;
    border-radius: 0;
    border-left: none;
    border-top: 1px solid #ddd;
    width: 100%;
    display: none;
    padding: 0;
    order: 1;
  }

  .nav__item--dropdown.active .nav__dropdown {
    display: block;
  }

  .nav__item--dropdown {
    display: flex;
    flex-direction: column;
  }

  .nav__dropdown > li > a {
    color: #1D215F;
    margin: 0;
  }

  .nav__dropdown > li > a:hover {
    background: #1D215F;
    color: #fff;
  }

  .nav__dropdown-item--has-submenu {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .nav__dropdown-item--has-submenu > a {
    position: relative;
    cursor: pointer;
  }

  .nav__subdropdown {
    position: static;
    box-shadow: none;
    background: #fff;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    border-left: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 0;
    display: none;
    order: 2;
    visibility: visible;
    opacity: 1;
    transition: none;
  }

  .nav__subdropdown::before {
    display: none;
  }

  .nav__dropdown-item--has-submenu.active .nav__subdropdown {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .nav__subdropdown li {
    padding-left: 30px;
  }

  .nav__subdropdown a {
    color: #1D215F;
    margin: 0;
    padding: 12px 20px 12px 0;
  }

  .nav__subdropdown a:hover,
  .nav__subdropdown a:active {
    background: #1D215F;
    color: #fff;
  }

  .nav__dropdown-item--has-submenu > a::after {
    color: #1D215F;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .nav__dropdown-item--has-submenu.active > a::after {
    transform: rotate(90deg);
  }

  .nav__dropdown-item--has-submenu > a:hover::after {
    color: #fff;
  }

  .nav__dropdown-item--has-submenu.active > a:hover::after {
    color: #fff;
  }

  .nav__dropdown-item--has-submenu > a::after {
    content: '▼';
    float: right;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__image--mobile {
    display: block !important;
  }

  .hero__image--desktop {
    display: none !important;
  }
}

/* ---------------------- */
/* NEW SECTIONS STYLES */
/* ---------------------- */

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* SECTION 1: HERO NEW */
.hero-new {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-new__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-new__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-new__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-new__image--mobile {
  display: none;
}

.hero-new__video--mobile {
  display: none;
}

.hero-new__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%); */
}

.hero-new__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.hero-new__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 600px;
  animation: fadeInUp 0.8s ease;
}

.hero-new__description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

.hero-new__button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease;
}

.hero-new__button:hover {
  background: #fff;
  color: #001E5A;
  border: 2px solid #001E5A;
}

/* SECTION 2: FEATURES */
.features-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.features-section__title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 10px;
}

.features-section__description {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.feature-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item__image-wrapper {
  width: 250px;
  height: 250px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}


.feature-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item__title {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.feature-item__text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.features-section__footer-text {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 40px;
}

/* SECTION 3: CAROUSEL */
.carousel-section {
  padding: 80px 20px;
  background: #fff;
}

.carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 calc((100% - 80px) / 3);
  background: #EEEEEE;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.carousel-card img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-card__image-wrapper {
  width: 100%;
  height: 420px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #EEEEEE;
}

.carousel-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.carousel-card:hover .carousel-card__image {
  transform: scale(1.1);
}

.carousel-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  padding: 20px 20px 10px;
  margin: 0;
  text-align: center;
}

.carousel-card__text {
  font-size: 16px;
  color: #555;
  padding: 0 20px;
  line-height: 1.6;
  flex-grow: 1;
  text-align: center;
  margin-bottom: 30px;
}

.carousel-card__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.carousel-card__button {
  padding: 12px 24px;
  border: 2px solid #001E5A;
  background: #EEEEEE;
  color: #001E5A;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.carousel-card__button:hover {
  background: #001E5A;
  color: #fff;
}

.carousel-card__button--secondary {
  background: #001E5A;
  color: #fff;
}

.carousel-card__button--secondary:hover {
  background: #fff;
  border-color: #001E5A;
  color: #001E5A;
}

.carousel-card__disclaimer {
  font-size: 11px;
  color: #888;
  text-align: center;
  padding: 0 20px 20px;
  margin: 0;
  font-style: italic;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #001E5A;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}


.carousel-arrow--prev {
  left: -20px;
}

.carousel-arrow--next {
  right: -20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #001E5A;
  transform: scale(1.2);
}

/* SECTION 4: APP DOWNLOAD */
.app-section {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.app-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.app-section__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.app-section__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* Add this to align left */
  padding: 60px 120px;
}

/* Override container centering for app section */
.app-section__overlay .container {
  margin-left: 0;  /* Remove auto centering */
  margin-right: auto;  /* Keep right margin auto */
}

.app-section__content {
  max-width: 700px;
  color: #fff;
  text-align: left;
}

.app-section__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.app-section__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.app-section__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.app-button {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.app-button:hover {
  transform: translateY(-3px);
}

.app-button__image {
  height: 50px;
  width: auto;
  display: block;
}

/* SECTION 5: LINKS GRID */
.links-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.links-grid__text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.links-grid__title {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.links-grid__text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.links-grid__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.links-grid__item:hover {
  transform: scale(1.05);
}

.links-grid__image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.links-grid__item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 30, 90, 0.9), transparent);
  color: #fff;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* SECTION 6 & 7: TWO COLUMN */
.two-column-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.two-column-section--alt {
  background: #001E5A;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.two-column__content {
  display: flex;
  flex-direction: column;
}

.two-column__title {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.two-column__title--alt {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.two-column__text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.two-column__text--alt {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.two-column__button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #fff;
  color: #001E5A;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.two-column__button:hover {
  background: #001E5A;
  color: #fff;
}

.two-column__button--alt {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 30px;
  background: #001E5A;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.two-column__button--alt:hover {
  background: #fff;
  color: #001E5A;
}


.two-column__image {
  width: 100%;
}

.two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .hero-new__title {
    font-size: 36px;
  }

  .hero-new__description {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .carousel-card {
    flex: 0 0 calc((100% - 40px) / 2);
  }

  .carousel-card__image-wrapper {
    height: 320px;
    padding: 30px;
  }

  .links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .links-grid__text-column {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .two-column {
    gap: 40px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .hero-new {
    min-height: 400px;
  }

  .hero-new__image--desktop {
    display: none;
  }

  .hero-new__image--mobile {
    display: block;
  }

  .hero-new__video--desktop {
    display: none;
  }

  .hero-new__video--mobile {
    display: block;
  }

  .hero-new__overlay {
    justify-content: center;
  }

  .hero-new__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-new__title {
    font-size: 28px;
    text-align: center;
    max-width: 100%;
  }

  .hero-new__description {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
  }

  .hero-new__button {
    align-self: center;
  }

  .features-section {
    padding: 60px 20px;
  }

  .features-section__title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-item__image-wrapper {
    width: 150px;
    height: 150px;
  }

  .carousel-section {
    padding: 60px 20px;
  }

  .carousel-card {
    flex: 0 0 100%;
  }

  .carousel-card__image-wrapper {
    height: 280px;
    padding: 25px;
  }

  .carousel-card__buttons {
    flex-direction: column;
  }

  .carousel-card__button {
    width: 100%;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .app-section__overlay {
    justify-content: center;
    padding: 60px 20px;
  }

  .app-section__overlay .container {
    margin-left: auto;
    margin-right: auto;
  }

  .app-section__content {
    text-align: center;
    max-width: 100%;
  }

  .app-section__title {
    font-size: 28px;
    text-align: center;
  }

  .app-section__text {
    font-size: 16px;
    text-align: center;
  }

  .app-section__buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .app-button__image {
    height: 40px;
  }

  .links-section {
    padding: 60px 20px;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .links-grid__text-column {
    grid-column: 1;
    text-align: center;
    align-items: center;
  }

  .links-grid__title {
    text-align: center;
  }

  .links-grid__text {
    text-align: center;
  }

  .two-column-section {
    padding: 60px 20px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .two-column__content {
    align-items: center;
    text-align: center;
  }

  .two-column__title {
    text-align: center;
  }

  .two-column__title--alt {
    text-align: center;
  }

  .two-column__text {
    text-align: center;
  }

  .two-column__text--alt {
    text-align: center;
  }

  .two-column__button {
    align-self: center;
  }

  .two-column__button--alt {
    align-self: center;
  }

  .two-column__image {
    order: -1;
  }

  /* For #two-column-1, image should appear below content on mobile */
  #two-column-1 .two-column__image {
    order: 2;
  }

  #two-column-1 .two-column__content {
    order: 1;
  }
}

/* ---------------------- */
/* SUPPORT PAGE STYLES */
/* ---------------------- */

/* HERO SECTION */
.support-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.support-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.support-hero__background img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}

.support-hero__image--mobile {
  display: none;
}

.support-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.support-hero__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.support-hero__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.support-hero__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

/* HELP CENTER SECTION */
.help-center-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.help-center-section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 60px;
}

.help-center-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.help-center-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #F5F5F5;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-center-card__image-wrapper {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
  background: #f5f5f5;
}

.help-center-card__image-wrapper:hover .help-center-card__image {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.help-center-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.help-center-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.help-center-card__text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.help-center-card__button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #f5f5f5;
  color: #001E5A;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: center;
}

.help-center-card__button:hover {
  background: #001E5A;
  color: #fff;
}

/* CONTACT OPTIONS SECTION */
.contact-options-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-options-section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 60px;
}

.contact-options {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.contact-option {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #FEFEFE;
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  margin-bottom: 20px;
}

.contact-option__icon-column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2px;
}

.contact-option__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.contact-option__title-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-option__title {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0 0 10px 0;
}

.contact-option__text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.contact-option__button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-option__button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #fff;
  color: #001E5A;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-option__button:hover {
  background: #001E5A;
  color: #fff;
}

/* LOCATION SECTION */
.location-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.location-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.location-two-column__content {
  display: flex;
  flex-direction: column;
}

.location-two-column__title {
  font-size: 36px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 30px;
}

.location-two-column__text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.location-two-column__text b {
  color: #001E5A;
  font-weight: 600;
}

.location-two-column__map {
  width: 100%;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.location-map {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 30px;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .support-hero__title {
    font-size: 40px;
  }

  .support-hero__text {
    font-size: 18px;
  }

  .help-center-section {
    padding: 60px 20px;
  }

  .help-center-section__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .help-center-cards {
    gap: 30px;
  }

  .help-center-card {
    max-width: 100%;
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
  }

  .contact-options-section {
    padding: 60px 20px;
  }

  .contact-options-section__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-option {
    max-width: 100%;
  }

  .location-section {
    padding: 60px 20px;
  }

  .location-two-column {
    gap: 40px;
  }

  .location-two-column__title {
    font-size: 32px;
  }

  .location-two-column__map {
    height: 400px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .support-hero {
    min-height: 400px;
  }

  .support-hero__image--desktop {
    display: none;
  }

  .support-hero__image--mobile {
    display: block;
  }

  .support-hero__content {
    padding: 40px 20px;
  }

  .support-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .support-hero__text {
    font-size: 16px;
  }

  .help-center-section {
    padding: 40px 20px;
  }

  .help-center-section__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .help-center-cards {
    flex-direction: column;
    gap: 25px;
  }

  .help-center-card {
    max-width: 100%;
    flex: 1 1 100%;
    min-width: 100%;
  }

  .help-center-card__image-wrapper {
    height: 180px;
  }

  .contact-options-section {
    padding: 40px 20px;
  }

  .contact-options-section__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-option {
    max-width: 100%;
    padding: 30px 20px;
  }

  .contact-option__header {
    gap: 12px;
  }

  .contact-option__icon {
    width: 28px;
    height: 28px;
  }

  .contact-option__title {
    font-size: 22px;
  }

  .location-section {
    padding: 40px 20px;
  }

  .location-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-two-column__content {
    order: 1;
  }

  .location-two-column__map {
    order: 2;
    height: 300px;
  }

  .location-two-column__title {
    font-size: 28px;
    text-align: center;
  }

  .location-two-column__text {
    text-align: left;
  }
}

/* ---------------------- */
/* INSTRUKTIVNI VIDEO PAGE */
/* ---------------------- */

.video-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.video-hero__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.video-hero__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.video-hero__text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
}

.video-section {
  padding: 70px 20px;
  background: #FEFEFE;
}

.video-section__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #001E5A;
  margin-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-grid__item {
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 992px) {
  .video-hero__title {
    font-size: 36px;
  }

  .video-hero__text {
    font-size: 17px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video-hero {
    min-height: 320px;
  }

  .video-hero__content {
    text-align: center;
    padding: 50px 20px;
  }

  .video-hero__title {
    font-size: 30px;
  }

  .video-hero__text {
    font-size: 16px;
    margin: 0 auto;
  }

  .video-section {
    padding: 50px 20px;
  }

  .video-section__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-title {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* ---------------------- */
/* O NAMA - NOVA SEKCIJA */
/* ---------------------- */

.about-intro-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.about-intro-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-intro__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-intro__title {
  font-size: 36px;
  font-weight: 700;
  color: #001E5A;
}

.about-intro__text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.about-intro__image img {
  width: 350px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

@media (max-width: 992px) {
  .about-intro-section {
    padding: 60px 20px;
  }

  .about-intro-row {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-intro__content {
    align-items: center;
  }

  .about-intro__title {
    font-size: 32px;
  }

}

@media (max-width: 768px) {
  .about-intro-section {
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .about-intro-row {
    width: 100%;
    box-sizing: border-box;
  }

  .about-intro__title {
    font-size: 28px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-intro__text {
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-intro__image img {
    display: none;
  }
}

/* About banner block (wide image + text) */
.about-banner {
  margin: 0 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-banner__title {
  font-size: 28px;
  font-weight: 700;
  color: #001E5A;
  margin: 0;
}

.about-banner__text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

@media (max-width: 768px) {
  .about-banner {
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
  }

  .about-banner img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .about-banner__title {
    font-size: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-banner__text {
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* ---------------------- */
/* DIJABETES PAGE */
/* ---------------------- */

/* HERO SECTION */
.diabetes-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.diabetes-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.diabetes-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diabetes-hero__image--mobile {
  display: none;
}

.diabetes-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.diabetes-hero__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.diabetes-hero__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.diabetes-hero__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

/* BLOG CARDS SECTION */
.blog-cards-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.blog-cards-section__title {
  text-align: left;
  font-size: 36px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.blog-cards-section__text {
  text-align: left;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 0 50px 0;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.blog-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 80%;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__title {
  flex: 1;
  background: #fff;
  color: #001E5A;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .diabetes-hero__title {
    font-size: 40px;
  }

  .diabetes-hero__text {
    font-size: 18px;
  }

  .blog-cards-section {
    padding: 60px 20px;
  }

  .blog-cards-section__title {
    font-size: 32px;
  }

  .blog-cards-section__text {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-cards-section__title {
    text-align: center;
  }

  .blog-cards-section__text {
    text-align: left;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .diabetes-hero {
    min-height: 400px;
  }

  .diabetes-hero__image--desktop {
    display: none;
  }

  .diabetes-hero__image--mobile {
    display: block;
  }

  .diabetes-hero__content {
    padding: 40px 20px;
  }

  .diabetes-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .diabetes-hero__text {
    font-size: 16px;
  }

  .blog-cards-section {
    padding: 40px 20px;
  }

  .blog-cards-section__title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .blog-cards-section__text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card__title {
    font-size: 18px;
    padding: 16px;
  }

  .blog-cards-section__title {
    text-align: center;
  }

  .blog-cards-section__text {
    text-align: left;
  }
}

/* ---------------------- */
/* TIP 1 DIJABETES PAGE */
/* ---------------------- */

/* 1. HERO SECTION */
.type1-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.type1-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.type1-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type1-hero__image--mobile {
  display: none;
}

.type1-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;  
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.type1-hero__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.type1-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.type1-hero__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

/* 2. INTRO TEXT */
.type1-intro {
  padding: 60px 20px;
  background: #FEFEFE;
}

.type1-intro__text {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: #001E5A;
  max-width: 900px;
  margin: 0 auto;
}

/* 3. TWO-COLUMN INFO SECTION */
.type1-info-section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 20px;
}

.type1-info-section--blue {
  background: #D4EEFD;
}

.type1-info-section--gray {
  background: #EDEDED;
}

.type1-info-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.type1-info-column__heading {
  font-size: 20px;
  font-weight: 700;
  color: #009FE3;
  margin-bottom: 15px;
}

.type1-info-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* 4. TWO-COLUMN CONTENT SECTION */
.type1-content-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.type1-content-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.type1-content-column__title {
  font-size: 32px;
  font-weight: 700;
  color: #001E5A;
  margin-bottom: 20px;
}

.type1-content-column__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.type1-content-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.type1-readmore__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid #001E5A;
  background: #fff;
  color: #001E5A;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.type1-readmore__btn:hover {
  background: #001E5A;
  color: #fff;

}

.type1-readmore__btn:focus-visible {
  outline: 3px solid rgba(0, 30, 90, 0.35);
  outline-offset: 3px;
}

.type1-readmore__more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 320ms ease, transform 320ms ease;
}

.type1-readmore__more.is-expanded {
  opacity: 1;
  transform: translateY(0);
}

.type1-content-column--image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

/* 6. ASYMMETRIC TWO-COLUMN SECTION */
.type1-asymmetric-section {
  padding: 40px 20px;
  margin: 50px auto 0;
  max-width: 1200px;
  background: #EAEEF6;
  border-radius: 20px;
  overflow: hidden;
}

.asymmetric-section-blue {
  background: #D4EEFC;
}

.type1-asymmetric-section .asymmetric-column-blue {
  color: #009FE3;
}

.type1-asymmetric-two-column {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.type1-asymmetric-column {
  min-width: 0;
}

.type1-asymmetric-column--image {
  display: flex;
}

.type1-asymmetric-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.type1-asymmetric-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.type1-asymmetric-column--image img {
  width: 100%;
  max-width: 240px;
  max-height: 220px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0;
  object-fit: contain;
}

/* Gestational diabetes – dedicated two-column sections (image left, text right) */
.gesta-two-column-section {
  padding: 40px 20px;
  margin: 50px auto 0;
  max-width: 1200px;
  background: #EAEEF6;
  border-radius: 20px;
}

.gesta-two-column {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gesta-two-column__col {
  min-width: 0;
}

.gesta-two-column__col--image {
  display: flex;
  justify-content: flex-start;
}

.gesta-two-column__col--image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* Gestational diabetes – read more */
.gesta-readmore__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid #001E5A;
  background: #EAEEF6;
  color: #001E5A;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.gesta-readmore__btn:hover {
  background: #001E5A;
  color: #fff;
}

.gesta-readmore__btn:focus-visible {
  outline: 3px solid rgba(0, 30, 90, 0.35);
  outline-offset: 3px;
}

.gesta-readmore__more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 320ms ease, transform 320ms ease;
}

.gesta-readmore__more.is-expanded {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .gesta-two-column-section {
    padding: 40px 20px;
  }

  .gesta-two-column {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .gesta-two-column-section {
    padding: 40px 20px;
    max-width: 340px;
  }

  .gesta-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gesta-two-column__col--image {
    justify-content: center;
    order: -1;
  }

  .gesta-two-column__col--image img {
    max-width: 240px;
  }
}

/* 7. CONTENT BLOCK */
.type1-content-block {
  padding: 80px 20px;
  background: #FEFEFE;
}

/* Source note (below last section, above footer) */
.type1-source-note {
  padding: 0 20px 40px;
  background: #FEFEFE;
}

.type1-source-note__text {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.type1-content-item {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.type1-content-item:last-of-type {
  margin-bottom: 50px;
}

.type1-content-item__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.type1-content-item__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.type1-content-image {
  max-width: 1200px;
  margin: 0 auto;
}

.type1-content-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* 8. TABLE SECTION */
.type1-table-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.type1-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.type1-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  min-width: 640px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.type1-table thead {
  background: #009FE3;
  color: #fff;
}

.type1-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}

.type1-table tbody tr:nth-child(odd) {
  background: #fff;
}

.type1-table tbody tr:nth-child(even) {
  background: #D5EEFD;
}

.type1-table td {
  padding: 18px 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.type1-table-section__note {
  font-size: 14px;
  margin-top: 20px;
}

/* 9. INFO + CTA SECTION */
.type1-cta-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.type1-cta-section__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #001E5A;
  margin-bottom: 50px;
}

.type1-cta-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.type1-cta-item {
  margin-bottom: 30px;
}

.type1-cta-item:last-child {
  margin-bottom: 0;
}

.type1-cta-item__heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 12px;
}

.type1-cta-item__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.type1-cta-column--image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.type1-cta-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: #D4EEFC;
  padding: 30px 40px;
  border-radius: 20px;
}

.type1-cta-banner__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  text-align: left;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .type1-hero__title {
    font-size: 40px;
  }

  .type1-hero__text {
    font-size: 18px;
  }

  .type1-intro {
    padding: 50px 20px;
  }

  .type1-info-section {
    padding: 50px 20px;
  }

  .type1-info-two-column {
    gap: 40px;
  }

  .type1-content-section {
    padding: 60px 20px;
  }

  .type1-content-two-column {
    gap: 40px;
  }

  .type1-content-column__title {
    font-size: 28px;
  }

  .type1-asymmetric-section {
    padding: 60px 20px;
  }

  .type1-asymmetric-two-column {
    grid-template-columns: 70% 30%;
    gap: 40px;
  }

  .type1-content-block {
    padding: 60px 20px;
  }

  .type1-table-section {
    padding: 60px 20px;
  }

  .type1-cta-section {
    padding: 60px 20px;
  }

  .type1-cta-section__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .type1-cta-two-column {
    gap: 40px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .type1-hero {
    min-height: 400px;
  }

  .type1-hero__image--desktop {
    display: none;
  }

  .type1-hero__image--mobile {
    display: block;
  }

  .type1-hero__content {
    padding: 40px 20px;
  }

  .type1-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .type1-hero__text {
    font-size: 16px;
  }

  .type1-intro {
    padding: 40px 20px;
  }

  .type1-intro__text {
    font-size: 16px;
  }

  .type1-info-section {
    padding: 40px 20px;
    max-width: 340px;
  }

  .type1-info-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .type1-content-section {
    padding: 40px 20px;
  }

  .type1-content-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .type1-content-column--image {
    order: -1;
  }

  .type1-content-column__title {
    font-size: 26px;
  }

  .type1-content-column__subtitle {
    font-size: 20px;
  }

  .type1-asymmetric-section {
    padding: 40px 20px;
    max-width: 340px;
  }

  .type1-asymmetric-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .type1-asymmetric-column--image {
    order: -1;
  }

  .type1-content-block {
    padding: 40px 20px;
  }

  .type1-content-item {
    margin-bottom: 30px;
  }

  .type1-table-section {
    padding: 40px 20px;
  }

  .type1-table-wrapper {
    margin: 0 -10px;
    padding: 0 10px;
  }

  .type1-table {
    font-size: 14px;
    min-width: 520px;
  }

  .type1-table th,
  .type1-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .type1-cta-section {
    padding: 40px 20px;
  }

  .type1-cta-section__title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .type1-cta-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .type1-cta-column--image {
    order: -1;
  }

  .type1-cta-banner {
    padding: 20px;
  }

  .type1-cta-banner__text {
    font-size: 15px;
  }
}

/* ---------------------- */
/* TIP 2 DIJABETES PAGE */
/* ---------------------- */

/* 1. HERO SECTION */
.type2-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.type2-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.type2-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type2-hero__image--mobile {
  display: none;
}

.type2-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.type2-hero__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.type2-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.type2-hero__subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.type2-hero__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

/* 2. INTRO TEXT */
.type2-intro {
  padding: 60px 20px;
  background: #FEFEFE;
}

.type2-intro__text {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: #001E5A;
  max-width: 900px;
  margin: 0 auto;
}

/* 3. LEFT-ALIGNED TEXT SECTION */
.type2-text-section {
  padding: 60px 20px;
  background: #FEFEFE;
  max-width: 1200px;
  margin: 0 auto;
}

.type2-text-section__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.type2-text-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
  max-width: 1200px;
}

/* 4. TWO-COLUMN INFO SECTION (Light Blue) */
.type2-info-section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 20px;
}

.type2-info-section--blue {
  background: #D4EEFD;
}

.type2-info-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.type2-info-column__heading {
  font-size: 20px;
  font-weight: 700;
  color: #009FE3;
  margin-bottom: 15px;
}

.type2-info-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.type2-info-column__list {
  margin: 10px 0 0;
  padding-left: 20px;
}

.type2-info-column__list li {
  margin-bottom: 8px;
}

/* 5-9. COMBINED CONTENT SECTION */
.type2-combined-section {
  padding: 20px 20px;
  background: #FEFEFE;
}

.type2-content-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.type2-content-two-column:last-child {
  margin-bottom: 0;
}

.type2-content-two-column--reversed {
  margin-top: 60px;
}

.type2-content-column__title {
  font-size: 32px;
  font-weight: 700;
  color: #001E5A;
  margin-bottom: 20px;
}

.type2-content-column__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.type2-content-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.type2-content-column__list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #001E5A;
}

.type2-content-column__list li {
  margin-bottom: 8px;
}

.type2-readmore__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid #001E5A;
  background: #EAEEF6;
  color: #001E5A;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.type2-readmore__btn:hover {
  background: #001E5A;
  color: #fff;
}

.type2-readmore__btn:focus-visible {
  outline: 3px solid rgba(0, 30, 90, 0.35);
  outline-offset: 3px;
}

.type2-readmore__more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 320ms ease, transform 320ms ease;
}

.type2-readmore__more.is-expanded {
  opacity: 1;
  transform: translateY(0);
}

.type2-content-column--image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.type2-text-block {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px 40px;
  border-radius: 20px;
}

.type2-text-block--blue {
  background: #EAEEF6;
}

.type2-text-block--gray {
  background: #202979;
}

.type2-text-block__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.type2-text-block__heading2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.type2-text-block__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.type2-text-block__text2 {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
}

.type2-image-overlay {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
  border-radius: 20px;
  overflow: hidden;
}

.type2-image-overlay__image {
  width: 100%;
  height: 300px;
  display: block;
}

.type2-image-overlay__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: #fff;
}

.type2-image-overlay__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.type2-image-overlay__description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}

/* 10. MEDIUM HEADING + TWO COLUMNS */
.type2-double-column-section {
  padding: 20px 20px;
  background: #FEFEFE;
  max-width: 1200px;
  margin: 0 auto;
}

.type2-double-column-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #001E5A;
  margin-bottom: 20px;
  text-align: left;
}

.type2-double-column-section__intro {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
  max-width: 1200px;
}

.type2-double-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.type2-double-column-item__heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.type2-double-column-item__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* 11. IMAGE + TEXT GRID (2 columns, 3 rows) */
.type2-image-text-grid-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.type2-image-text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.type2-image-text-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.type2-image-text-item__image {
  width: 200px;
  height: 200px;
 
}

.type2-image-text-item__text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  flex: 1;
}

/* 12. FINAL SECTION WITH BANNER */
.type2-final-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.type2-final-section__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.type2-final-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 30px;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.type2-final-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: #D4EEFD;
  padding: 30px 40px;
  border-radius: 20px;
}

.type2-final-banner__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
  text-align: left;
}

/* 13. REFERENCE TEXT */
.type2-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.type2-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Reference sections for other pages - matching type2-reference-section styling */
.cpe-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cpe-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpo-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cpo-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpp-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cpp-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpts-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cpts-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mnl-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.mnl-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mn-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.mn-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cda-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cda-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .type2-hero__title {
    font-size: 40px;
  }

  .type2-hero__text {
    font-size: 18px;
  }

  .type2-intro {
    padding: 50px 20px;
  }

  .type2-text-section {
    padding: 50px 20px;
  }

  .type2-info-section {
    padding: 50px 20px;
  }

  .type2-info-two-column {
    gap: 40px;
  }

  .type2-combined-section {
    padding: 60px 20px;
  }

  .type2-content-two-column {
    gap: 40px;
    margin-bottom: 50px;
  }

  .type2-content-column__title {
    font-size: 28px;
  }

  .type2-text-block {
    margin: 50px auto;
    padding: 25px 30px;
  }

  .type2-image-overlay {
    margin-top: 50px;
  }

  .type2-double-column-section {
    padding: 60px 20px;
  }

  .type2-double-column-section__title {
    font-size: 28px;
  }

  .type2-double-column-grid {
    gap: 40px;
  }

  .type2-image-text-grid-section {
    padding: 60px 20px;
  }

  .type2-image-text-grid {
    gap: 30px;
  }

  .type2-final-section {
    padding: 60px 20px;
  }

  .type2-cta-section {
    padding: 60px 20px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .type2-hero {
    min-height: 400px;
  }

  .type2-hero__image--desktop {
    display: none;
  }

  .type2-hero__image--mobile {
    display: block;
  }

  .type2-hero__content {
    padding: 40px 20px;
  }

  .type2-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .type2-hero__text {
    font-size: 16px;
  }

  .type2-intro {
    padding: 40px 20px;
  }

  .type2-intro__text {
    font-size: 16px;
  }

  .type2-text-section {
    padding: 40px 20px;
  }

  .type2-info-section {
    padding: 40px 20px;
    max-width: 340px;
  }

  .type2-info-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .type2-combined-section {
    padding: 40px 20px;
  }

  .type2-content-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .type2-content-column--image {
    order: -1;
  }

  .type2-content-two-column--reversed .type2-content-column--image {
    order: 0;
  }

  .type2-content-column__title {
    font-size: 26px;
  }

  .type2-content-column__subtitle {
    font-size: 20px;
  }

  .type2-text-block {
    margin: 40px auto;
  }

  .type2-image-overlay {
    margin-top: 40px;
  }

  .type2-image-overlay__text {
    padding: 20px;
    position: relative;
    background: rgba(0, 30, 90, 0.9);
  }

  .type2-image-overlay__title {
    font-size: 20px;
  }

  .type2-image-overlay__description {
    font-size: 14px;
  }

  .type2-double-column-section {
    padding: 40px 20px;
  }

  .type2-double-column-section__title {
    font-size: 26px;
  }

  .type2-double-column-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .type2-image-text-grid-section {
    padding: 40px 20px;
  }

  .type2-image-text-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .type2-image-text-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .type2-image-text-item__image {
    width: 100px;
    height: 100px;
  }

  .type2-final-section {
    padding: 40px 20px;
  }

  .type2-final-banner {
    padding: 20px;
  }

  .type2-final-banner__text {
    font-size: 15px;
  }

  .type2-reference-section {
    padding: 30px 20px;
  }

  .type2-reference-text {
    font-size: 11px;
  }

  .cpe-reference-section {
    padding: 30px 20px;
  }

  .cpe-reference-text {
    font-size: 11px;
  }

  .cpo-reference-section {
    padding: 30px 20px;
  }

  .cpo-reference-text {
    font-size: 11px;
  }

  .cpp-reference-section {
    padding: 30px 20px;
  }

  .cpp-reference-text {
    font-size: 11px;
  }

  .cpts-reference-section {
    padding: 30px 20px;
  }

  .cpts-reference-text {
    font-size: 11px;
  }

  .mnl-reference-section {
    padding: 30px 20px;
  }

  .mnl-reference-text {
    font-size: 11px;
  }

  .mn-reference-section {
    padding: 30px 20px;
  }

  .mn-reference-text {
    font-size: 11px;
  }

  .cda-reference-section {
    padding: 30px 20px;
  }

  .cda-reference-text {
    font-size: 11px;
  }

  .type2-image-overlay__image {
    display: none;
  }
}

/* ---------------------- */
/* BGM-CGM PAGE STYLES */
/* ---------------------- */

/* 1. HERO SECTION */
.bgm-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bgm-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bgm-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bgm-hero__image--mobile {
  display: none;
}

.bgm-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.bgm-hero__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.bgm-hero__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.bgm-hero__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

/* 2. CARDS SECTION */
.bgm-cards-section {
  padding: 60px 20px 10px;
  background: #fff;
}

.bgm-cards-section__heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.bgm-cards-section__text {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  max-width: 900px;
  margin: 0 auto 40px;
}

.bgm-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

.bgm-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #E8E3DD;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bgm-card__image {
  width: 100%;
  border-radius: 15px;
  object-fit:contain;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bgm-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* 3. DIVIDER + CARDS SECTION */
.bgm-divider-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.bgm-divider-cards-section__heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.bgm-divider-cards-section__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
}

.bgm-cards-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

/* Divider cards - unique styles for section 3 */
.bgm-divider-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.bgm-divider-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bgm-divider-card__image {
  width: 100%;
  border-radius: 15px;
  object-fit: contain;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bgm-divider-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.bgm-divider {
  width: 250px;
  height: 2px;
  background-color: #001E5A;
  margin: 40px auto;
}

.bgm-divider--dashed {
  border-top: 4px dotted #269FD9;
  background: none;
  height: 0;
  width: 100%;
  margin: 20px 0;
}

/* 4. LIGHT BLUE SECTION */
.bgm-blue-section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 20px;
  background-color: #B6E7FA;
}

.bgm-blue-section__heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 30px;
}

.bgm-blue-section__subheading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
  margin-top: 30px;
}

.bgm-blue-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  text-align: left;
  margin-bottom: 30px;
  max-width: 1200px;
}

.bgm-blue-section__image {
  text-align: center;
  margin: 40px 0;
}

.bgm-blue-section__image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

/* 5. MULTI TWO-COLUMN SECTION */
.bgm-multi-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.bgm-multi-section__heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.bgm-multi-section__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin: 0 auto 50px;
}

.bgm-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 60px;
  background-color: #F5F6F5;
  padding: 30px;
  border-radius: 20px;
}

.bgm-two-column:last-child {
  margin-bottom: 0;
}

.bgm-two-column__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bgm-two-column__image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0;
}

.bgm-two-column__content {
  display: flex;
  flex-direction: column;
}

.bgm-two-column__title {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.bgm-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.bgm-two-column--reversed {
  grid-template-columns: 1fr 1fr;
}

.bgm-two-column--reversed .bgm-two-column__image {
  grid-column: 2;
  grid-row: 1;
  padding: 0;
}

.bgm-two-column--reversed .bgm-two-column__content {
  grid-column: 1;
  grid-row: 1;
}

/* 6. FINAL TWO-COLUMN SECTION */
.bgm-final-section {
  padding: 10px 20px;
  background: #FEFEFE;
}

.bgm-final-section__heading {
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 30px;
  text-align: center;
}

/* Final two-column - unique styles for section 6 */
.bgm-final-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bgm-final-two-column__content {
  display: flex;
  flex-direction: column;
}

.bgm-final-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.bgm-final-two-column__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bgm-final-two-column__image img {
  width: 100%;
  max-width: 100px;
  height: 250px;
  border-radius: 20px;
  display: block;
  margin: 0;
}

/* 7. REFERENCES */
.bgm-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.bgm-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .bgm-hero__title {
    font-size: 40px;
  }

  .bgm-hero__text {
    font-size: 18px;
  }

  .bgm-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .bgm-cards-grid--two {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .bgm-divider-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .bgm-two-column {
    gap: 40px;
    margin-bottom: 50px;
  }

  .bgm-two-column__title {
    font-size: 20px;
  }

  .bgm-final-two-column {
    gap: 40px;
  }

  .bgm-final-two-column__image img {
    max-width: 220px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .bgm-hero {
    min-height: 400px;
  }

  .bgm-hero__image--desktop {
    display: none;
  }

  .bgm-hero__image--mobile {
    display: block;
  }

  .bgm-hero__content {
    padding: 40px 20px;
  }

  .bgm-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .bgm-hero__text {
    font-size: 16px;
  }

  .bgm-cards-section {
    padding: 40px 20px;
  }

  .bgm-cards-section__heading {
    font-size: 26px;
  }

  .bgm-cards-section__text {
    font-size: 16px;
  }

  .bgm-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bgm-cards-grid--two {
    grid-template-columns: 1fr;
  }

  .bgm-divider-cards-section {
    padding: 40px 20px;
  }

  .bgm-divider-cards-section__heading {
    font-size: 24px;
  }

  .bgm-divider {
    width: 180px;
    margin: 30px auto;
  }

  .bgm-blue-section {
    padding: 40px 20px;
    max-width: 340px;
  }

  .bgm-blue-section__heading {
    font-size: 24px;
  }

  .bgm-blue-section__subheading {
    font-size: 20px;
  }

  .bgm-blue-section__image img {
    max-width: 100%;
  }

  .bgm-multi-section {
    padding: 40px 20px;
  }

  .bgm-multi-section__heading {
    font-size: 24px;
  }

  .bgm-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .bgm-two-column--reversed .bgm-two-column__image {
    grid-column: 1;
    grid-row: 1;
  }

  .bgm-two-column--reversed .bgm-two-column__content {
    grid-column: 1;
    grid-row: 2;
  }

  .bgm-two-column__image {
    order: -1;
    padding: 0;
  }

  .bgm-final-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bgm-final-two-column__image {
    order: -1;
    padding: 0;
  }

  .bgm-final-two-column__image img {
    max-width: 100px;
    height: 200px;
  }

  .bgm-two-column__title {
    font-size: 20px;
  }

  .bgm-final-section {
    padding: 0px 20px;
  }

  .bgm-final-section__heading {
    font-size: 24px;
  }

  .bgm-reference-section {
    padding: 30px 20px;
  }

  .bgm-divider--dashed {
    border-top: 4px dotted #269FD9;
    background: none;
    height: 0;
    width: 100%;
    margin: 20px 0;
  }
}

/* ---------------------- */
/* TRAVEL PREPARATION PAGE STYLES */
/* ---------------------- */

/* 1. INTRO SECTION */
.travel-intro-section {
  padding: 80px 0 40px;
  background: #FEFEFE;
}

.travel-intro-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.travel-intro-section__text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.travel-intro-section__image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.travel-intro-section__image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

/* 2-4, 6. TWO-COLUMN SECTIONS */
.travel-two-column-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.travel-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.travel-two-column__content {
  display: flex;
  flex-direction: column;
}

.travel-two-column__heading {
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.travel-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.travel-two-column__image {
  width: 100%;
}

.travel-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.travel-two-column__image--small {
  max-width: 450px;
}

.travel-two-column__image--small img {
  height: 450px;
  object-fit: cover;
}

.travel-two-column__image--tall {
  max-width: 550px;
}

.travel-two-column__image--tall img {
  height: 750px;
  object-fit: cover;
}

.travel-two-column__image--small2 {
  max-width: 450px;
}

.travel-two-column__image--small2 img {
  height: 300px;
  object-fit: cover;
}

.travel-two-column__image--small3 {
  max-width: 450px;
}

.travel-two-column__image--small3 img {
  height: 350px;
  object-fit: cover;
}

.travel-two-column--reversed {
  grid-template-columns: 1fr 1fr;
}

.travel-two-column--reversed .travel-two-column__image {
  grid-column: 1;
  grid-row: 1;
}

.travel-two-column--reversed .travel-two-column__content {
  grid-column: 2;
  grid-row: 1;
}

/* 5. TWO-COLUMN INFO SECTION */
.travel-info-section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 20px;
  background: #EDEDED;
}

.travel-info-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.travel-info-two-column__column {
  display: flex;
  flex-direction: column;
}

.travel-info-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.travel-info-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* 7. IMAGE HIGHLIGHT SECTION */
.travel-highlight-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.travel-highlight-image {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

.travel-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-highlight-overlay {
  position: absolute;
  bottom: 20%;
  left: 0;
  padding: 40px 50px;
  background: rgba(0, 0, 0, 0.6);
  max-width: 650px;
  border-radius: 0 20px 20px 0;
}

.travel-highlight-overlay__heading {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.travel-highlight-overlay__text {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
}

.travel-highlight-text {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 30px 40px;
  background: #EDEDED;
  border-radius: 20px;
}

.travel-highlight-text__content {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* 8. REFERENCES */
.travel-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.travel-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .travel-intro-section {
    padding: 80px 0 40px;
  }

  .travel-intro-section__heading {
    font-size: 36px;
  }

  .travel-intro-section__text {
    font-size: 17px;
  }

  .travel-two-column-section {
    padding: 50px 20px;
  }

  .travel-two-column {
    gap: 40px;
  }

  .travel-two-column__heading {
    font-size: 26px;
  }

  .travel-info-section {
    padding: 50px 20px;
  }

  .travel-info-two-column {
    gap: 40px;
  }

  .travel-highlight-section {
    padding: 50px 20px;
  }

  .travel-highlight-image {
    height: 450px;
  }

  .travel-highlight-overlay {
    padding: 30px 35px;
    max-width: 550px;
  }

  .travel-highlight-overlay__heading {
    font-size: 22px;
  }

  .travel-highlight-text {
    padding: 25px 30px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .travel-intro-section {
    padding: 80px 0 40px;
  }

  .travel-intro-section__image img {
    height: 500px;
  }

  .travel-intro-section__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .travel-intro-section__text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .travel-two-column-section {
    padding: 40px 20px;
  }

  .travel-two-column__image--small {
    max-width: 340px;
  }

  .travel-two-column__image--small img {
    height: 300px;
    object-fit: cover;
  }

  .travel-two-column__image--tall {
    max-width: 340px;
  }

  .travel-two-column__image--tall img {
    height: 400px;
    object-fit: cover;
  }


  .travel-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .travel-two-column__heading {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .travel-two-column--reversed .travel-two-column__image {
    grid-column: 1;
    grid-row: 1;
  }

  .travel-two-column--reversed .travel-two-column__content {
    grid-column: 1;
    grid-row: 2;
  }

  .travel-info-section {
    padding: 40px 20px;
    max-width: 340px;
  }

  .travel-info-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .travel-info-two-column__heading {
    font-size: 20px;
  }

  .travel-highlight-section {
    padding: 40px 20px;
  }

  .travel-highlight-image {
    height: 450px;
  }

  .travel-highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    max-width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .travel-highlight-overlay__heading {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .travel-highlight-overlay__text {
    font-size: 15px;
  }

  .travel-highlight-text {
    margin-top: 20px;
    padding: 20px;
  }

  .travel-highlight-text__content {
    font-size: 15px;
  }

  .travel-reference-section {
    padding: 30px 20px;
  }

  .travel-reference-text {
    font-size: 11px;
  }
}

/* ---------------------- */
/* DURING TRAVEL PAGE STYLES */
/* ---------------------- */

/* 1. HERO SECTION */
.dt-intro-section {
  padding: 80px 0 40px;
  background: #FEFEFE;
}

.dt-intro-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dt-intro-section__text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.dt-intro-section__image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.dt-intro-section__image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

/* 2-7. TWO-COLUMN SECTIONS */
.dt-two-column-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.dt-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.dt-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dt-two-column__heading-medium {
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.dt-two-column__heading-small {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.dt-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.dt-two-column__image {
  width: 100%;
}

.dt-two-column__image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 20px;
  display: block;
}

.dt-two-column__image--small {
  max-width: 450px;
}

.dt-two-column__image--small img {
  height: 300px;
  object-fit: cover;
}

.dt-two-column__image--small2 {
  max-width: 450px;
}

.dt-two-column__image--small2 img {
  height: 350px;
  object-fit: cover;
}

.dt-two-column--reversed {
  grid-template-columns: 1fr 1fr;
}

.dt-two-column--reversed .dt-two-column__image {
  grid-column: 1;
  grid-row: 1;
}

.dt-two-column--reversed .dt-two-column__content {
  grid-column: 2;
  grid-row: 1;
}

/* 8. CTA SECTION */
.dt-cta-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.dt-cta-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: #EDEDED;
  padding: 30px 40px;
  border-radius: 20px;
}

.dt-cta-banner__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  text-align: left;
}

/* 9. REFERENCES */
.dt-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.dt-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .dt-intro-section {
    padding: 60px 0 30px;
  }

  .dt-intro-section__heading {
    font-size: 36px;
  }

  .dt-intro-section__text {
    font-size: 17px;
  }

  .dt-two-column-section {
    padding: 50px 20px;
  }

  .dt-two-column {
    gap: 40px;
  }

  .dt-two-column__heading-medium {
    font-size: 26px;
  }

  .dt-two-column__heading-small {
    font-size: 19px;
  }

  .dt-cta-section {
    padding: 50px 20px;
  }

  .dt-cta-banner {
    padding: 25px 30px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .dt-intro-section {
    padding: 40px 0 20px;
  }

  .dt-intro-section__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .dt-intro-section__text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .dt-intro-section__image img {
    height: 300px;
  }

  .dt-two-column-section {
    padding: 40px 20px;
  }

  .dt-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dt-two-column__content {
    gap: 15px;
  }

  .dt-two-column__heading-medium {
    font-size: 24px;
  }

  .dt-two-column__heading-small {
    font-size: 18px;
  }

  .dt-two-column--reversed .dt-two-column__image {
    grid-column: 1;
    grid-row: 1;
  }

  .dt-two-column--reversed .dt-two-column__content {
    grid-column: 1;
    grid-row: 2;
  }

  .dt-cta-section {
    padding: 40px 20px;
  }

  .dt-cta-banner {
    padding: 20px;
  }

  .dt-cta-banner__text {
    font-size: 15px;
  }

  .dt-reference-section {
    padding: 30px 20px;
  }

  .dt-reference-text {
    font-size: 11px;
  }
}

/* ---------------------- */
/* HOT WEATHER PAGE STYLES */
/* ---------------------- */

/* 1. HERO SECTION */
.hw-intro-section {
  padding: 80px 0 40px;
  background: #FEFEFE;
}

.hw-intro-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hw-intro-section__text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.hw-intro-section__image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hw-intro-section__image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

/* 2-3. TWO-COLUMN SECTIONS */
.hw-two-column-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.hw-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hw-two-column__content {
  display: flex;
  flex-direction: column;
}

.hw-two-column__heading-medium {
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.hw-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.hw-two-column__image {
  width: 100%;
}

.hw-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Smaller image variant */
.hw-two-column__image--small {
  max-width: 400px;
  margin-left: auto;
}

.hw-two-column__image--small img {
  max-height: 350px;
  object-fit: cover;
}

/* Narrow but tall image variant */
.hw-two-column__image--tall {
  max-width: 750px;
}

.hw-two-column__image--tall img {
  height: 750px;
  object-fit: cover;
}

.hw-two-column--reversed {
  grid-template-columns: 1fr 1fr;
}

.hw-two-column--reversed .hw-two-column__image {
  grid-column: 1;
  grid-row: 1;
}

.hw-two-column--reversed .hw-two-column__content {
  grid-column: 2;
  grid-row: 1;
}

/* 4. IMAGE HIGHLIGHT SECTION */
.hw-highlight-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.hw-highlight-image {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
}

.hw-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hw-highlight-overlay {
  position: absolute;
  bottom: 0%;
  left: 0;
  padding: 40px 50px;
  background: rgba(0, 0, 0, 0.6);
  max-width: 650px;
  border-radius: 0 20px 20px 0;
}

.hw-highlight-overlay__heading {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.hw-highlight-overlay__text {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
}

.hw-highlight-text {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 30px 40px;
  background: #EDEDED;
  border-radius: 20px;
}

.hw-highlight-text__content {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* 5. REFERENCES */
.hw-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.hw-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .hw-intro-section {
    padding: 60px 0 30px;
  }

  .hw-intro-section__heading {
    font-size: 36px;
  }

  .hw-intro-section__text {
    font-size: 17px;
  }

  .hw-two-column-section {
    padding: 50px 20px;
  }

  .hw-two-column {
    gap: 40px;
  }

  .hw-two-column__heading-medium {
    font-size: 26px;
  }

  .hw-two-column__image--small {
    max-width: 350px;
  }

  .hw-two-column__image--small img {
    max-height: 300px;
  }

  .hw-two-column__image--tall {
    max-width: 300px;
  }

  .hw-two-column__image--tall img {
    height: 450px;
  }

  .hw-highlight-section {
    padding: 50px 20px;
  }

  .hw-highlight-image {
    height: 450px;
  }

  .hw-highlight-overlay {
    padding: 30px 35px;
    max-width: 550px;
  }

  .hw-highlight-overlay__heading {
    font-size: 22px;
  }

  .hw-highlight-text {
    padding: 25px 30px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .hw-intro-section {
    padding: 40px 0 20px;
  }

  .hw-intro-section__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hw-intro-section__text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hw-intro-section__image img {
    height: 300px;
  }

  .hw-two-column-section {
    padding: 40px 20px;
  }

  .hw-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hw-two-column__heading-medium {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .hw-two-column__image--small {
    max-width: 100%;
    margin-left: 0;
  }

  .hw-two-column__image--small img {
    max-height: 300px;
  }

  .hw-two-column__image--tall {
    max-width: 100%;
  }

  .hw-two-column__image--tall img {
    height: 350px;
  }

  .hw-two-column--reversed .hw-two-column__image {
    grid-column: 1;
    grid-row: 1;
  }

  .hw-two-column--reversed .hw-two-column__content {
    grid-column: 1;
    grid-row: 2;
  }

  .hw-highlight-section {
    padding: 40px 20px;
  }

  .hw-highlight-image {
    height: 850px;
  }

  .hw-highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    max-width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .hw-highlight-overlay__heading {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .hw-highlight-overlay__text {
    font-size: 15px;
  }

  .hw-highlight-text {
    margin-top: 20px;
    padding: 20px;
  }

  .hw-highlight-text__content {
    font-size: 15px;
  }

  .hw-reference-section {
    padding: 30px 20px;
  }

  .hw-reference-text {
    font-size: 11px;
  }
}

/* ---------------------- */
/* COLD WEATHER PAGE STYLES */
/* ---------------------- */

/* 1. HERO SECTION */
.cw-intro-section {
  padding: 80px 0 40px;
  background: #FEFEFE;
}

.cw-intro-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cw-intro-section__text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.cw-intro-section__image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.cw-intro-section__image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

/* 2-3. TWO-COLUMN SECTIONS */
.cw-two-column-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cw-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cw-two-column__content {
  display: flex;
  flex-direction: column;
}

.cw-two-column__heading-medium {
  font-size: 28px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.cw-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.cw-two-column__image {
  width: 100%;
}

.cw-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Smaller image variant */
.cw-two-column__image--small {
  max-width: 400px;
  margin-left: auto;
}

.cw-two-column__image--small img {
  max-height: 350px;
  object-fit: cover;
}

/* Narrow but tall image variant */
.cw-two-column__image--tall {
  max-width: 750px;
}

.cw-two-column__image--tall img {
  height: 550px;
  object-fit: cover;
}

.cw-two-column--reversed {
  grid-template-columns: 1fr 1fr;
}

.cw-two-column--reversed .cw-two-column__image {
  grid-column: 1;
  grid-row: 1;
}

.cw-two-column--reversed .cw-two-column__content {
  grid-column: 2;
  grid-row: 1;
}

/* 4. IMAGE HIGHLIGHT SECTION */
.cw-highlight-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cw-highlight-image {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
}

.cw-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 70%;
}

.cw-highlight-overlay {
  position: absolute;
  bottom: 0%;
  left: 0;
  padding: 40px 50px;
  background: rgba(0, 0, 0, 0.6);
  max-width: 650px;
  border-radius: 0 20px 20px 0;
}

.cw-highlight-overlay__heading {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.cw-highlight-overlay__text {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
}

.cw-highlight-text {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 30px 40px;
  background: #EDEDED;
  border-radius: 20px;
}

.cw-highlight-text__content {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* 5. REFERENCES */
.cw-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cw-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .cw-intro-section {
    padding: 60px 0 30px;
  }

  .cw-intro-section__heading {
    font-size: 36px;
  }

  .cw-intro-section__text {
    font-size: 17px;
  }

  .cw-two-column-section {
    padding: 50px 20px;
  }

  .cw-two-column {
    gap: 40px;
  }

  .cw-two-column__heading-medium {
    font-size: 26px;
  }

  .cw-two-column__image--small {
    max-width: 350px;
  }

  .cw-two-column__image--small img {
    max-height: 300px;
  }

  .cw-two-column__image--tall {
    max-width: 300px;
  }

  .cw-two-column__image--tall img {
    height: 450px;
  }

  .cw-highlight-section {
    padding: 50px 20px;
  }

  .cw-highlight-image {
    height: 450px;
  }

  .cw-highlight-overlay {
    padding: 30px 35px;
    max-width: 550px;
  }

  .cw-highlight-overlay__heading {
    font-size: 22px;
  }

  .cw-highlight-text {
    padding: 25px 30px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .cw-intro-section {
    padding: 40px 0 20px;
  }

  .cw-intro-section__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cw-intro-section__text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cw-intro-section__image img {
    height: 300px;
  }

  .cw-two-column-section {
    padding: 40px 20px;
  }

  .cw-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cw-two-column__heading-medium {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .cw-two-column__image--small {
    max-width: 100%;
    margin-left: 0;
  }

  .cw-two-column__image--small img {
    max-height: 300px;
  }

  .cw-two-column__image--tall {
    max-width: 100%;
  }

  .cw-two-column__image--tall img {
    height: 350px;
  }

  .cw-two-column--reversed .cw-two-column__image {
    grid-column: 1;
    grid-row: 1;
  }

  .cw-two-column--reversed .cw-two-column__content {
    grid-column: 1;
    grid-row: 2;
  }

  .cw-highlight-section {
    padding: 40px 20px;
  }

  .cw-highlight-image {
    height: 850px;
  }

  .cw-highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    max-width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .cw-highlight-overlay__heading {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .cw-highlight-overlay__text {
    font-size: 15px;
  }

  .cw-highlight-text {
    margin-top: 20px;
    padding: 20px;
  }

  .cw-highlight-text__content {
    font-size: 15px;
  }

  .cw-reference-section {
    padding: 30px 20px;
  }

  .cw-reference-text {
    font-size: 11px;
  }
}

/* ---------------------- */
/* CONTOUR PLUS ELITE PAGE STYLES */
/* ---------------------- */

/* 1. HERO SECTION WITH TWO COLUMNS */
.cpe-hero-section {
  padding: 30px 10px;
  background: #FEFEFE;
}

.cpe-hero-section .container {
  max-width: 1200px;
}

.cpe-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.cpe-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cpe-hero-two-column__image {
  width: 100%;
}

.cpe-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.cpe-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cpe-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpe-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpe-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #001E5A;
}

.cpe-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.cpe-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

.cpe-hero-two-column__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cpe-app-button {
  display: inline-block;
}

.cpe-app-button img {
  height: 50px;
  width: auto;
  display: block;
}

/* 2. DETAILED FEATURES SECTION */
.cpe-features-section {
  padding: 20px 20px;
  background: #FEFEFE;
}

.cpe-features-section .container {
  max-width: 1200px;
}

.cpe-features-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpe-features-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.cpe-features-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpe-features-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpe-divider {
  width: 100px;
  height: 2px;
  background-color: #001E5A;
  margin: 30px auto;
}

.cpe-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cpe-feature-row__image {
  width: 100%;
}

.cpe-feature-row__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}


.cpe-feature-row__image.app-image {
  width: 400px;
}

.cpe-feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpe-feature-row__heading-small {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpe-feature-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpe-feature-row--reversed {
  grid-template-columns: 1fr 1fr;
}

.cpe-feature-row--reversed .cpe-feature-row__content {
  grid-column: 1;
  grid-row: 1;
}

.cpe-feature-row--reversed .cpe-feature-row__image {
  grid-column: 2;
  grid-row: 1;
}

.cpe-feature-row__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cpe-feature-row__link {
  font-size: 14px;
  color: #0096c8;
  text-decoration: underline;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
}

/* 3. THREE COLUMNS SECTION */
.cpe-three-columns-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpe-three-columns-section .container {
  max-width: 1200px;
}

.cpe-three-columns-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpe-three-columns-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.cpe-three-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cpe-three-columns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cpe-three-columns-item__image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}

.cpe-three-columns-item__heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.cpe-three-columns-item__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

/* 4. VIDEO SECTION */
.cpe-video-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpe-video-section .container {
  max-width: 1200px;
}

.cpe-video-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpe-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}

.cpe-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cpe-video-section__button {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cpe-video-section__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 5. THREE COLUMNS WITH BUTTONS */
.cpe-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpe-cards-section .container {
  max-width: 1200px;
}

.cpe-cards-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpe-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cpe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cpe-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}

.cpe-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 25px;
  flex-grow: 1;
}

.cpe-card__button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cpe-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 6. TWO COLUMNS WITH PDF DOWNLOADS */
.cpe-downloads-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpe-downloads-section .container {
  max-width: 1200px;
}

.cpe-downloads-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.cpe-downloads-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.cpe-downloads-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpe-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpe-download-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #F5F5F5;
  border-radius: 10px;
  text-decoration: none;
  color: #001E5A;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cpe-download-item:hover {
  background: #EAEEF6;
  transform: translateX(5px);
}

.cpe-download-item i {
  font-size: 24px;
  color: #001E5A;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .cpe-hero-section {
    padding: 60px 20px;
  }

  .cpe-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .cpe-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .cpe-hero-two-column__subheading {
    font-size: 22px;
  }

  .cpe-features-section {
    padding: 50px 20px;
  }

  .cpe-features-section__heading {
    font-size: 28px;
  }

  .cpe-feature-row {
    gap: 30px;
  }

  .cpe-three-columns-section {
    padding: 50px 20px;
  }

  .cpe-three-columns-section__heading {
    font-size: 28px;
  }

  .cpe-three-columns-grid {
    gap: 30px;
  }

  .cpe-video-section {
    padding: 50px 20px;
  }

  .cpe-video-section__heading {
    font-size: 28px;
  }

  .cpe-cards-section {
    padding: 50px 20px;
  }

  .cpe-cards-section__heading {
    font-size: 28px;
  }

  .cpe-cards-grid {
    gap: 30px;
  }

  .cpe-downloads-section {
    padding: 50px 20px;
  }

  .cpe-downloads-two-column {
    gap: 40px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .cpe-hero-section {
    padding: 40px 20px;
  }

  .cpe-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cpe-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .cpe-hero-two-column__bold-text {
    font-size: 16px;
  }

  .cpe-hero-two-column__subheading {
    font-size: 20px;
  }

  .cpe-hero-two-column__buttons {
    justify-content: center;
  }

  .cpe-features-section {
    padding: 40px 20px;
  }

  .cpe-features-section__heading {
    font-size: 24px;
  }

  .cpe-features-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cpe-feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cpe-feature-row--reversed .cpe-feature-row__content {
    grid-column: 1;
    grid-row: 1;
  }

  .cpe-feature-row--reversed .cpe-feature-row__image {
    grid-column: 1;
    grid-row: 2;
  }

  .cpe-feature-row__heading-small {
    font-size: 20px;
  }

  .cpe-feature-row__buttons {
    justify-content: center;
  }

  .cpe-feature-row__link {
    text-align: center;
  }

  .cpe-three-columns-section {
    padding: 40px 20px;
  }

  .cpe-three-columns-section__heading {
    font-size: 24px;
  }

  .cpe-three-columns-section__bold-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cpe-three-columns-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpe-three-columns-item__image {
    width: 220px;
    height: 220px;
    margin-bottom: 18px;
  }

  .cpe-video-section {
    padding: 40px 20px;
  }

  .cpe-video-section__heading {
    font-size: 24px;
  }

  .cpe-cards-section {
    padding: 40px 20px;
  }

  .cpe-cards-section__heading {
    font-size: 24px;
  }

  .cpe-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cpe-downloads-section {
    padding: 40px 20px;
  }

  .cpe-downloads-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpe-feature-row__image.app-image {
    width: 200px;
    justify-self: center;
  }
}

/* ---------------------- */
/* CONTOUR PLUS ONE STYLES */
/* ---------------------- */

.cpo-hero-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.cpo-hero-section .container {
  max-width: 1200px;
}

.cpo-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.cpo-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cpo-hero-two-column__image {
  width: 100%;
}

.cpo-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.cpo-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cpo-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpo-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpo-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cpo-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.cpo-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

.cpo-hero-two-column__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cpo-app-button {
  display: inline-block;
}

.cpo-app-button img {
  height: 50px;
  width: auto;
  display: block;
}

/* 2. DETAILED FEATURES SECTION */
.cpo-features-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpo-features-section .container {
  max-width: 1200px;
}

.cpo-features-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpo-features-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.cpo-features-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpo-features-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpo-divider {
  width: 100px;
  height: 2px;
  background-color: #001E5A;
  margin: 30px auto;
}

.cpo-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cpo-feature-row__image {
  width: 100%;
}

.cpo-feature-row__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.cpo-feature-row__image.app-image {
  width: 400px;
}

.cpo-feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpo-feature-row__heading-small {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpo-feature-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpo-feature-row--reversed {
  grid-template-columns: 1fr 1fr;
}

.cpo-feature-row--reversed .cpo-feature-row__content {
  grid-column: 1;
  grid-row: 1;
}

.cpo-feature-row--reversed .cpo-feature-row__image {
  grid-column: 2;
  grid-row: 1;
}

.cpo-feature-row__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cpo-feature-row__link {
  font-size: 14px;
  color: #0096c8;
  text-decoration: none;
  text-align: center;
  margin-top: 10px;
}

/* 3. THREE COLUMNS SECTION */
.cpo-three-columns-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpo-three-columns-section .container {
  max-width: 1200px;
}

.cpo-three-columns-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpo-three-columns-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.cpo-three-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cpo-three-columns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cpo-three-columns-item__image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}

.cpo-three-columns-item__heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.cpo-three-columns-item__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

/* 4. VIDEO SECTION */
.cpo-video-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpo-video-section .container {
  max-width: 1200px;
}

.cpo-video-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpo-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}

.cpo-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cpo-video-section__button {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cpo-video-section__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 5. THREE COLUMNS WITH BUTTONS */
.cpo-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpo-cards-section .container {
  max-width: 1200px;
}

.cpo-cards-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cpo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cpo-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}

.cpo-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 25px;
  flex-grow: 1;
}

.cpo-card__button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cpo-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 6. TWO COLUMNS WITHOUT PDF DOWNLOADS */
.cpo-downloads-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpo-downloads-section .container {
  max-width: 1200px;
}

.cpo-downloads-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.cpo-downloads-two-column__left {
  width: 100%;
}

.cpo-downloads-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
  text-align: center;
}

.cpo-downloads-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
  text-align: center;
}

/* 7. REFERENCES SECTION */
.cpo-references-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpo-references-section .container {
  max-width: 1200px;
}

.cpo-references-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpo-references-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cpo-references-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 0;
}

.cpo-references-item {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .cpo-hero-section {
    padding: 60px 20px;
  }

  .cpo-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .cpo-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .cpo-hero-two-column__subheading {
    font-size: 22px;
  }

  .cpo-features-section {
    padding: 50px 20px;
  }

  .cpo-features-section__heading {
    font-size: 28px;
  }

  .cpo-feature-row {
    gap: 30px;
  }

  .cpo-three-columns-section {
    padding: 50px 20px;
  }

  .cpo-three-columns-section__heading {
    font-size: 28px;
  }

  .cpo-three-columns-grid {
    gap: 30px;
  }

  .cpo-video-section {
    padding: 50px 20px;
  }

  .cpo-video-section__heading {
    font-size: 28px;
  }

  .cpo-cards-section {
    padding: 50px 20px;
  }

  .cpo-cards-section__heading {
    font-size: 28px;
  }

  .cpo-cards-grid {
    gap: 30px;
  }

  .cpo-downloads-section {
    padding: 50px 20px;
  }

  .cpo-downloads-two-column {
    gap: 40px;
  }

  .cpo-references-section {
    padding: 50px 20px;
  }

  .cpo-references-section__heading {
    font-size: 28px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .cpo-hero-section {
    padding: 40px 20px;
  }

  .cpo-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cpo-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .cpo-hero-two-column__bold-text {
    font-size: 16px;
  }

  .cpo-hero-two-column__subheading {
    font-size: 20px;
  }

  .cpo-hero-two-column__buttons {
    justify-content: center;
  }

  .cpo-features-section {
    padding: 40px 20px;
  }

  .cpo-features-section__heading {
    font-size: 24px;
  }

  .cpo-features-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cpo-feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cpo-feature-row--reversed .cpo-feature-row__content {
    grid-column: 1;
    grid-row: 1;
  }

  .cpo-feature-row--reversed .cpo-feature-row__image {
    grid-column: 1;
    grid-row: 2;
  }

  .cpo-feature-row__image.app-image {
    width: 200px;
    justify-self: center;
  }

  .cpo-feature-row__heading-small {
    font-size: 20px;
  }

  .cpo-feature-row__buttons {
    justify-content: center;
  }

  .cpo-feature-row__link {
    text-align: center;
  }

  .cpo-three-columns-section {
    padding: 40px 20px;
  }

  .cpo-three-columns-section__heading {
    font-size: 24px;
  }

  .cpo-three-columns-section__bold-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cpo-three-columns-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpo-three-columns-item__image {
    width: 220px;
    height: 220px;
    margin-bottom: 18px;
  }

  .cpo-video-section {
    padding: 40px 20px;
  }

  .cpo-video-section__heading {
    font-size: 24px;
  }

  .cpo-cards-section {
    padding: 40px 20px;
  }

  .cpo-cards-section__heading {
    font-size: 24px;
  }

  .cpo-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cpo-downloads-section {
    padding: 40px 20px;
  }

  .cpo-downloads-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpo-references-section {
    padding: 40px 20px;
  }

  .cpo-references-section__heading {
    font-size: 24px;
  }

  .cpo-references-list {
    padding-left: 30px;
  }
}

/* ---------------------- */
/* CONTOUR PLUS STYLES */
/* ---------------------- */

.cpp-hero-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.cpp-hero-section .container {
  max-width: 1200px;
}

.cpp-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.cpp-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cpp-features-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpp-features-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.cpp-hero-two-column__image {
  width: 100%;
}

.cpp-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.cpp-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cpp-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpp-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpp-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cpp-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.cpp-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

.cpp-hero-two-column__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cpp-app-button {
  display: inline-block;
}

.cpp-app-button img {
  height: 50px;
  width: auto;
  display: block;
}

/* 2. DETAILED FEATURES SECTION */
.cpp-features-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpp-features-section .container {
  max-width: 1200px;
}

.cpp-features-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpp-features-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpp-divider {
  width: 100px;
  height: 2px;
  background-color: #001E5A;
  margin: 30px auto;
}

.cpp-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cpp-feature-row__image {
  width: 100%;
}

.cpp-feature-row__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.cpp-feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpp-feature-row__heading-small {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpp-feature-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpp-feature-row--reversed {
  grid-template-columns: 1fr 1fr;
}

.cpp-feature-row--reversed .cpp-feature-row__content {
  grid-column: 1;
  grid-row: 1;
}

.cpp-feature-row--reversed .cpp-feature-row__image {
  grid-column: 2;
  grid-row: 1;
}

/* 3. THREE COLUMNS SECTION */
.cpp-three-columns-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpp-three-columns-section .container {
  max-width: 1200px;
}

.cpp-three-columns-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpp-three-columns-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.cpp-three-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cpp-three-columns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cpp-three-columns-item__image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}

.cpp-three-columns-item__heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.cpp-three-columns-item__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

/* 4. VIDEO SECTION */
.cpp-video-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpp-video-section .container {
  max-width: 1200px;
}

.cpp-video-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpp-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}

.cpp-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cpp-video-section__button {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cpp-video-section__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 5. TWO COLUMNS WITH BUTTONS */
.cpp-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpp-cards-section .container {
  max-width: 1200px;
}

.cpp-cards-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cpp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cpp-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}

.cpp-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 25px;
  flex-grow: 1;
}

.cpp-card__button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cpp-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 6. TWO COLUMNS WITH PDF DOWNLOADS */
.cpp-downloads-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpp-downloads-section .container {
  max-width: 1200px;
}

.cpp-downloads-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.cpp-downloads-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.cpp-downloads-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpp-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpp-download-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #F5F5F5;
  border-radius: 10px;
  text-decoration: none;
  color: #001E5A;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cpp-download-item:hover {
  background: #EAEEF6;
  transform: translateX(5px);
}

.cpp-download-item i {
  font-size: 24px;
  color: #001E5A;
}

/* 7. REFERENCES (SMALL TEXT AT BOTTOM) */
.cpp-references-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cpp-references-section .container {
  max-width: 1200px;
}

.cpp-references-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cpp-references-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 0;
  font-size: 14px;
}

.cpp-references-item {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .cpp-hero-section {
    padding: 60px 20px;
  }

  .cpp-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .cpp-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .cpp-hero-two-column__subheading {
    font-size: 22px;
  }

  .cpp-features-section {
    padding: 50px 20px;
  }

  .cpp-features-section__heading {
    font-size: 28px;
  }

  .cpp-feature-row {
    gap: 30px;
  }

  .cpp-three-columns-section {
    padding: 50px 20px;
  }

  .cpp-three-columns-section__heading {
    font-size: 28px;
  }

  .cpp-three-columns-grid {
    gap: 30px;
  }

  .cpp-video-section {
    padding: 50px 20px;
  }

  .cpp-video-section__heading {
    font-size: 28px;
  }

  .cpp-cards-section {
    padding: 50px 20px;
  }

  .cpp-cards-section__heading {
    font-size: 28px;
  }

  .cpp-cards-grid {
    gap: 30px;
  }

  .cpp-downloads-section {
    padding: 50px 20px;
  }

  .cpp-downloads-two-column {
    gap: 40px;
  }

  .cpp-references-section {
    padding: 30px 20px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .cpp-hero-section {
    padding: 40px 20px;
  }

  .cpp-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cpp-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .cpp-hero-two-column__bold-text {
    font-size: 16px;
  }

  .cpp-hero-two-column__subheading {
    font-size: 20px;
  }

  .cpp-hero-two-column__buttons {
    justify-content: center;
  }

  .cpp-features-section {
    padding: 40px 20px;
  }

  .cpp-features-section__heading {
    font-size: 24px;
  }

  .cpp-features-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cpp-feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cpp-feature-row--reversed .cpp-feature-row__content {
    grid-column: 1;
    grid-row: 1;
  }

  .cpp-feature-row--reversed .cpp-feature-row__image {
    grid-column: 1;
    grid-row: 2;
  }

  .cpp-feature-row__heading-small {
    font-size: 20px;
  }

  .cpp-three-columns-section {
    padding: 40px 20px;
  }

  .cpp-three-columns-section__heading {
    font-size: 24px;
  }

  .cpp-three-columns-section__bold-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cpp-three-columns-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpp-three-columns-item__image {
    width: 220px;
    height: 220px;
    margin-bottom: 18px;
  }

  .cpp-video-section {
    padding: 40px 20px;
  }

  .cpp-video-section__heading {
    font-size: 24px;
  }

  .cpp-cards-section {
    padding: 40px 20px;
  }

  .cpp-cards-section__heading {
    font-size: 24px;
  }

  .cpp-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cpp-downloads-section {
    padding: 40px 20px;
  }

  .cpp-downloads-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpp-references-section {
    padding: 30px 20px;
  }

  .cpp-references-list {
    padding-left: 30px;
    font-size: 12px;
  }

  .cpp-references-item {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

/* ---------------------- */
/* CONTOUR PLUS TEST STRIP STYLES */
/* ---------------------- */

.cpts-hero-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.cpts-hero-section .container {
  max-width: 1200px;
}

.cpts-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.cpts-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cpts-hero-two-column__image {
  width: 100%;
}

.cpts-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.cpts-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cpts-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpts-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpts-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cpts-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.cpts-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

.cpts-hero-two-column__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* 2. DETAILED FEATURES SECTION */
.cpts-features-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpts-features-section .container {
  max-width: 1200px;
}

.cpts-features-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpts-features-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.cpts-features-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpts-features-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cpts-divider {
  width: 100px;
  height: 2px;
  background-color: #001E5A;
  margin: 30px auto;
}

.cpts-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cpts-feature-row__image {
  width: 100%;
}

.cpts-feature-row__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.cpts-feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpts-feature-row__heading-small {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cpts-feature-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cpts-feature-row--reversed {
  grid-template-columns: 1fr 1fr;
}

.cpts-feature-row--reversed .cpts-feature-row__content {
  grid-column: 1;
  grid-row: 1;
}

.cpts-feature-row--reversed .cpts-feature-row__image {
  grid-column: 2;
  grid-row: 1;
}

/* 3. THREE COLUMNS WITH BUTTONS */
.cpts-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpts-cards-section .container {
  max-width: 1200px;
}

.cpts-cards-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cpts-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cpts-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cpts-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}


.cpts-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 25px;
  flex-grow: 1;
}

.cpts-card__button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cpts-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 4. TWO COLUMNS WITH PDF DOWNLOADS */
.cpts-downloads-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cpts-downloads-section .container {
  max-width: 1200px;
}

.cpts-downloads-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.cpts-downloads-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.cpts-downloads-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.cpts-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpts-download-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #F5F5F5;
  border-radius: 10px;
  text-decoration: none;
  color: #001E5A;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cpts-download-item:hover {
  background: #EAEEF6;
  transform: translateX(5px);
}

.cpts-download-item i {
  font-size: 24px;
  color: #001E5A;
}

/* 5. REFERENCES (SMALL TEXT AT BOTTOM) */
.cpts-references-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cpts-references-section .container {
  max-width: 1200px;
}

.cpts-references-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cpts-references-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 0;
  font-size: 14px;
}

.cpts-references-item {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .cpts-hero-section {
    padding: 60px 20px;
  }

  .cpts-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .cpts-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .cpts-hero-two-column__subheading {
    font-size: 22px;
  }

  .cpts-features-section {
    padding: 50px 20px;
  }

  .cpts-features-section__heading {
    font-size: 28px;
  }

  .cpts-feature-row {
    gap: 30px;
  }

  .cpts-cards-section {
    padding: 50px 20px;
  }

  .cpts-cards-section__heading {
    font-size: 28px;
  }

  .cpts-cards-grid {
    gap: 30px;
  }

  .cpts-downloads-section {
    padding: 50px 20px;
  }

  .cpts-downloads-two-column {
    gap: 40px;
  }

  .cpts-references-section {
    padding: 30px 20px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .cpts-hero-section {
    padding: 40px 20px;
  }

  .cpts-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cpts-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .cpts-hero-two-column__bold-text {
    font-size: 16px;
  }

  .cpts-hero-two-column__subheading {
    font-size: 20px;
  }

  .cpts-hero-two-column__buttons {
    justify-content: center;
  }

  .cpts-features-section {
    padding: 40px 20px;
  }

  .cpts-features-section__heading {
    font-size: 24px;
  }

  .cpts-features-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cpts-feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cpts-feature-row--reversed .cpts-feature-row__content {
    grid-column: 1;
    grid-row: 1;
  }

  .cpts-feature-row--reversed .cpts-feature-row__image {
    grid-column: 1;
    grid-row: 2;
  }

  .cpts-feature-row__heading-small {
    font-size: 20px;
  }

  .cpts-cards-section {
    padding: 40px 20px;
  }

  .cpts-cards-section__heading {
    font-size: 24px;
  }

  .cpts-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cpts-downloads-section {
    padding: 40px 20px;
  }

  .cpts-downloads-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpts-references-section {
    padding: 30px 20px;
  }

  .cpts-references-list {
    padding-left: 30px;
    font-size: 12px;
  }

  .cpts-references-item {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

/* ---------------------- */
/* CONTOUR DIABETES APP STYLES */
/* ---------------------- */

.cda-hero-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.cda-hero-section .container {
  max-width: 1200px;
}

.cda-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.cda-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cda-hero-two-column__image {
  width: 100%;
}

.cda-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.cda-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cda-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cda-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cda-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cda-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.cda-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

.cda-hero-two-column__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cda-app-button {
  display: inline-block;
}

.cda-app-button img {
  height: 50px;
  width: auto;
  display: block;
}

/* 2. DETAILED FEATURES SECTION */
.cda-features-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cda-features-section .container {
  max-width: 1200px;
}

.cda-features-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cda-features-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.cda-features-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cda-features-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cda-divider {
  width: 100px;
  height: 2px;
  background-color: #001E5A;
  margin: 30px auto;
}

.cda-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cda-feature-row__image {
  width: 100%;
}

.cda-feature-row__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.cda-feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cda-feature-row__heading-small {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.cda-feature-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.cda-feature-row--reversed {
  grid-template-columns: 1fr 1fr;
}

.cda-feature-row--reversed .cda-feature-row__content {
  grid-column: 1;
  grid-row: 1;
}

.cda-feature-row--reversed .cda-feature-row__image {
  grid-column: 2;
  grid-row: 1;
}

.cda-feature-row__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cda-feature-row__link {
  font-size: 14px;
  color: #0096c8;
  text-decoration: none;
  text-align: center;
  margin-top: 10px;
}

/* 3. VIDEO SECTION */
.cda-video-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cda-video-section .container {
  max-width: 1200px;
}

.cda-video-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cda-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}

.cda-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cda-video-wrapper__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.cda-video-wrapper__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cda-video-section__button {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cda-video-section__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 4. THREE COLUMNS SECTION */
.cda-three-columns-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cda-three-columns-section .container {
  max-width: 1200px;
}

.cda-three-columns-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cda-three-columns-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.cda-three-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cda-three-columns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cda-three-columns-item__image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}

.cda-three-columns-item__heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.cda-three-columns-item__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

/* 5. TWO COLUMNS WITH BUTTONS */
.cda-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cda-cards-section .container {
  max-width: 1200px;
}

.cda-cards-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cda-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cda-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cda-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}

.cda-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 25px;
  flex-grow: 1;
}

.cda-card__button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cda-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 6. TWO COLUMNS SECTION (WITHOUT PDF DOWNLOADS) */
.cda-downloads-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.cda-downloads-section .container {
  max-width: 1200px;
}

.cda-downloads-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.cda-downloads-two-column__left {
  width: 100%;
}

.cda-downloads-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
  text-align: center;
}

.cda-downloads-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
  text-align: center;
}

/* 7. REFERENCES (SMALL TEXT AT BOTTOM) */
.cda-references-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.cda-references-section .container {
  max-width: 1200px;
}

.cda-references-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cda-references-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 0;
  font-size: 14px;
}

.cda-references-item {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .cda-hero-section {
    padding: 60px 20px;
  }

  .cda-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .cda-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .cda-hero-two-column__subheading {
    font-size: 22px;
  }

  .cda-features-section {
    padding: 50px 20px;
  }

  .cda-features-section__heading {
    font-size: 28px;
  }

  .cda-feature-row {
    gap: 30px;
  }

  .cda-video-section {
    padding: 50px 20px;
  }

  .cda-video-section__heading {
    font-size: 28px;
  }

  .cda-three-columns-section {
    padding: 50px 20px;
  }

  .cda-three-columns-section__heading {
    font-size: 28px;
  }

  .cda-three-columns-grid {
    gap: 30px;
  }

  .cda-cards-section {
    padding: 50px 20px;
  }

  .cda-cards-section__heading {
    font-size: 28px;
  }

  .cda-cards-grid {
    gap: 30px;
  }

  .cda-downloads-section {
    padding: 50px 20px;
  }

  .cda-downloads-two-column {
    gap: 40px;
  }

  .cda-references-section {
    padding: 30px 20px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .cda-hero-section {
    padding: 40px 20px;
  }

  .cda-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cda-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .cda-hero-two-column__bold-text {
    font-size: 16px;
  }

  .cda-hero-two-column__subheading {
    font-size: 20px;
  }

  .cda-hero-two-column__buttons {
    justify-content: center;
  }

  .cda-features-section {
    padding: 40px 20px;
  }

  .cda-features-section__heading {
    font-size: 24px;
  }

  .cda-features-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cda-feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cda-feature-row--reversed .cda-feature-row__content {
    grid-column: 1;
    grid-row: 1;
  }

  .cda-feature-row--reversed .cda-feature-row__image {
    grid-column: 1;
    grid-row: 2;
  }

  .cda-feature-row__heading-small {
    font-size: 20px;
  }

  .cda-feature-row__buttons {
    justify-content: center;
  }

  .cda-feature-row__link {
    text-align: center;
  }

  .cda-video-section {
    padding: 40px 20px;
  }

  .cda-video-section__heading {
    font-size: 24px;
  }

  .cda-three-columns-section {
    padding: 40px 20px;
  }

  .cda-three-columns-section__heading {
    font-size: 24px;
  }

  .cda-three-columns-section__bold-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cda-three-columns-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cda-three-columns-item__image {
    width: 220px;
    height: 220px;
    margin-bottom: 18px;
  }

  .cda-cards-section {
    padding: 40px 20px;
  }

  .cda-cards-section__heading {
    font-size: 24px;
  }

  .cda-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cda-downloads-section {
    padding: 40px 20px;
  }

  .cda-downloads-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cda-references-section {
    padding: 30px 20px;
  }

  .cda-references-list {
    padding-left: 30px;
    font-size: 12px;
  }

  .cda-references-item {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

/* ---------------------- */
/* MICROLET NEXT STYLES */
/* ---------------------- */

.mn-hero-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.mn-hero-section .container {
  max-width: 1200px;
}

.mn-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.mn-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mn-hero-two-column__image {
  width: 100%;
}

.mn-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.mn-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mn-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.mn-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.mn-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mn-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.mn-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

/* 2. DETAILED FEATURES SECTION */
.mn-features-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mn-features-section .container {
  max-width: 1200px;
}

.mn-features-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.mn-features-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.mn-features-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mn-features-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.mn-divider {
  width: 100px;
  height: 2px;
  background-color: #001E5A;
  margin: 30px auto;
}

.mn-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mn-feature-row__image {
  width: 100%;
}

.mn-feature-row__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.mn-feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mn-feature-row__heading-small {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.mn-feature-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.mn-feature-row--reversed {
  grid-template-columns: 1fr 1fr;
}

.mn-feature-row--reversed .mn-feature-row__content {
  grid-column: 1;
  grid-row: 1;
}

.mn-feature-row--reversed .mn-feature-row__image {
  grid-column: 2;
  grid-row: 1;
}

/* 3. VIDEO SECTION */
.mn-video-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mn-video-section .container {
  max-width: 1200px;
}

.mn-video-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mn-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}

.mn-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mn-video-section__button {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mn-video-section__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 4. TWO COLUMNS WITH BUTTONS */
.mn-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mn-cards-section .container {
  max-width: 1200px;
}

.mn-cards-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mn-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Single centered card (e.g. microlet-next section 4) */
.mn-cards-grid--single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.mn-cards-grid--single .mn-card {
  width: 100%;
  max-width: min(480px, 100%);
}

.mn-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mn-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}

.mn-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 25px;
  flex-grow: 1;
}

.mn-card__button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.mn-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 5. TWO COLUMNS WITH PDF DOWNLOADS */
.mn-downloads-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mn-downloads-section .container {
  max-width: 1200px;
}

.mn-downloads-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.mn-downloads-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.mn-downloads-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.mn-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mn-download-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #F5F5F5;
  border-radius: 10px;
  text-decoration: none;
  color: #001E5A;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mn-download-item:hover {
  background: #EAEEF6;
  transform: translateX(5px);
}

.mn-download-item i {
  font-size: 24px;
  color: #001E5A;
}

/* 6. REFERENCES (SMALL TEXT AT BOTTOM) */
.mn-references-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.mn-references-section .container {
  max-width: 1200px;
}

.mn-references-content {
  max-width: 1200px;
  margin: 0 auto;
}

.mn-references-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 0;
  font-size: 14px;
}

.mn-references-item {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .mn-hero-section {
    padding: 60px 20px;
  }

  .mn-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .mn-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .mn-hero-two-column__subheading {
    font-size: 22px;
  }

  .mn-features-section {
    padding: 50px 20px;
  }

  .mn-features-section__heading {
    font-size: 28px;
  }

  .mn-feature-row {
    gap: 30px;
  }

  .mn-video-section {
    padding: 50px 20px;
  }

  .mn-video-section__heading {
    font-size: 28px;
  }

  .mn-cards-section {
    padding: 50px 20px;
  }

  .mn-cards-section__heading {
    font-size: 28px;
  }

  .mn-cards-grid {
    gap: 30px;
  }

  .mn-downloads-section {
    padding: 50px 20px;
  }

  .mn-downloads-two-column {
    gap: 40px;
  }

  .mn-references-section {
    padding: 30px 20px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .mn-hero-section {
    padding: 40px 20px;
  }

  .mn-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .mn-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .mn-hero-two-column__bold-text {
    font-size: 16px;
  }

  .mn-hero-two-column__subheading {
    font-size: 20px;
  }

  .mn-features-section {
    padding: 40px 20px;
  }

  .mn-features-section__heading {
    font-size: 24px;
  }

  .mn-features-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .mn-feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mn-feature-row--reversed .mn-feature-row__content {
    grid-column: 1;
    grid-row: 1;
  }

  .mn-feature-row--reversed .mn-feature-row__image {
    grid-column: 1;
    grid-row: 2;
  }

  .mn-feature-row__heading-small {
    font-size: 20px;
  }

  .mn-video-section {
    padding: 40px 20px;
  }

  .mn-video-section__heading {
    font-size: 24px;
  }

  .mn-cards-section {
    padding: 40px 20px;
  }

  .mn-cards-section__heading {
    font-size: 24px;
  }

  .mn-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mn-downloads-section {
    padding: 40px 20px;
  }

  .mn-downloads-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mn-references-section {
    padding: 30px 20px;
  }

  .mn-references-list {
    padding-left: 30px;
    font-size: 12px;
  }

  .mn-references-item {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

/* ---------------------- */
/* MICROLET NEXT LANCETAR STYLES */
/* ---------------------- */

.mnl-hero-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.mnl-hero-section .container {
  max-width: 1200px;
}

.mnl-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.mnl-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mnl-hero-two-column__image {
  width: 100%;
}

.mnl-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.mnl-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mnl-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.mnl-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.mnl-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mnl-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.mnl-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

/* 2. DETAILED FEATURES SECTION */
.mnl-features-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mnl-features-section .container {
  max-width: 1200px;
}

.mnl-features-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.mnl-features-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.mnl-features-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.mnl-divider {
  width: 100px;
  height: 2px;
  background-color: #001E5A;
  margin: 30px auto;
}

.mnl-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mnl-feature-row__image {
  width: 100%;
}

.mnl-feature-row__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.mnl-feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mnl-feature-row__heading-small {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.mnl-feature-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.mnl-feature-row--reversed {
  grid-template-columns: 1fr 1fr;
}

.mnl-feature-row--reversed .mnl-feature-row__content {
  grid-column: 1;
  grid-row: 1;
}

.mnl-feature-row--reversed .mnl-feature-row__image {
  grid-column: 2;
  grid-row: 1;
}

/* 3. ONE COLUMN WITH BUTTON */
.mnl-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mnl-cards-section .container {
  max-width: 1200px;
}

.mnl-cards-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mnl-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.mnl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mnl-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}

.mnl-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 25px;
  flex-grow: 1;
}

.mnl-card__button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.mnl-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* 5. TWO COLUMNS WITH PDF DOWNLOADS */
.mnl-downloads-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mnl-downloads-section .container {
  max-width: 1200px;
}

.mnl-downloads-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.mnl-downloads-two-column__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.mnl-downloads-two-column__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.mnl-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mnl-download-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #F5F5F5;
  border-radius: 10px;
  text-decoration: none;
  color: #001E5A;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mnl-download-item:hover {
  background: #EAEEF6;
  transform: translateX(5px);
}

.mnl-download-item i {
  font-size: 24px;
  color: #001E5A;
}

/* 3. NEW SECTION: FOUR IMAGES WITH CAPTIONS */
.mnl-images-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mnl-images-section .container {
  max-width: 1200px;
}

.mnl-images-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mnl-images-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.mnl-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.mnl-image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mnl-image-item__image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
  display: block;
}

.mnl-image-item__caption {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: #001E5A;
  margin: 0;
}

.mnl-images-section__content {
  max-width: 1200px;
  margin: 0 auto;
}

.mnl-images-section__subheading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
  text-align: left;
}

.mnl-images-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
  text-align: left;
}

/* 4. NEW SECTION: LARGE IMAGE */
.mnl-large-image-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.mnl-large-image-section .container {
  max-width: 1200px;
}

.mnl-large-image-section__heading {
  font-size: 32px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mnl-large-image-section__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.mnl-large-image-section__image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mnl-large-image-section__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* 6. REFERENCES (SMALL TEXT AT BOTTOM) */
.mnl-references-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.mnl-references-section .container {
  max-width: 1200px;
}

.mnl-references-content {
  max-width: 1200px;
  margin: 0 auto;
}

.mnl-references-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 0;
  font-size: 14px;
}

.mnl-references-item {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .mnl-hero-section {
    padding: 60px 20px;
  }

  .mnl-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .mnl-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .mnl-hero-two-column__subheading {
    font-size: 22px;
  }

  .mnl-features-section {
    padding: 50px 20px;
  }

  .mnl-features-section__heading {
    font-size: 28px;
  }

  .mnl-feature-row {
    gap: 30px;
  }

  .mnl-images-section {
    padding: 50px 20px;
  }

  .mnl-images-section__heading {
    font-size: 28px;
  }

  .mnl-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .mnl-large-image-section {
    padding: 50px 20px;
  }

  .mnl-large-image-section__heading {
    font-size: 28px;
  }

  .mnl-cards-section {
    padding: 50px 20px;
  }

  .mnl-cards-section__heading {
    font-size: 28px;
  }

  .mnl-cards-grid {
    gap: 30px;
  }

  .mnl-downloads-section {
    padding: 50px 20px;
  }

  .mnl-downloads-two-column {
    gap: 40px;
  }

  .mnl-references-section {
    padding: 30px 20px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .mnl-hero-section {
    padding: 40px 20px;
  }

  .mnl-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .mnl-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .mnl-hero-two-column__bold-text {
    font-size: 16px;
  }

  .mnl-hero-two-column__subheading {
    font-size: 20px;
  }

  .mnl-features-section {
    padding: 40px 20px;
  }

  .mnl-features-section__heading {
    font-size: 24px;
  }

  .mnl-feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mnl-feature-row--reversed .mnl-feature-row__content {
    grid-column: 1;
    grid-row: 1;
  }

  .mnl-feature-row--reversed .mnl-feature-row__image {
    grid-column: 1;
    grid-row: 2;
  }

  .mnl-feature-row__heading-small {
    font-size: 20px;
  }

  .mnl-images-section {
    padding: 40px 20px;
  }

  .mnl-images-section__heading {
    font-size: 24px;
  }

  .mnl-images-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .mnl-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .mnl-image-item__image {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .mnl-images-section__subheading {
    font-size: 18px;
  }

  .mnl-large-image-section {
    padding: 40px 20px;
  }

  .mnl-large-image-section__heading {
    font-size: 24px;
  }

  .mnl-large-image-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .mnl-cards-section {
    padding: 40px 20px;
  }

  .mnl-cards-section__heading {
    font-size: 24px;
  }

  .mnl-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .mnl-downloads-section {
    padding: 40px 20px;
  }

  .mnl-downloads-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mnl-references-section {
    padding: 30px 20px;
  }

  .mnl-references-list {
    padding-left: 30px;
    font-size: 12px;
  }

  .mnl-references-item {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .mnl-images-section {
    padding: 40px 20px;
  }

  .mnl-images-section__heading {
    font-size: 24px;
  }

  .mnl-images-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .mnl-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .mnl-images-section__subheading {
    font-size: 18px;
  }

  .mnl-large-image-section {
    padding: 40px 20px;
  }

  .mnl-large-image-section__heading {
    font-size: 24px;
  }

  .mnl-large-image-section__bold-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/* RESPONSIVE: VERY SMALL MOBILE */
@media (max-width: 480px) {
  .mnl-images-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ========================================
   GLUCOCONTRO-ONLINE PAGE STYLES
   ======================================== */

/* 1. HERO SECTION */
.gco-hero-section {
  padding: 30px 10px;
  background: #FEFEFE;
}

.gco-hero-section .container {
  max-width: 1200px;
}

.gco-hero-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.gco-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gco-hero-two-column__image {
  width: 100%;
}

.gco-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.gco-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gco-hero-two-column__bold-text {
  font-size: 18px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.gco-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.gco-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #001E5A;
}

.gco-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.gco-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

.gco-hero-two-column__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.gco-hero-button {
  display: inline-block;
  padding: 12px 30px;
  background: #fdb90e;
  color: #001E5A;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.gco-hero-button:hover {
  background: #D69A01;
}

/* 2. THREE COLUMN SECTION */
.gco-three-column-section {
  padding: 80px 20px;
  background: white;
}

.gco-three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gco-three-column-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gco-three-column-item__heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-three-column-item__image {
  width: 250px;
  height: 210px;

}

.gco-three-column-footer {
  text-align: center;
  margin-top: 40px;
}

.gco-three-column-footer__bold-text {
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-three-column-footer__button {
  display: inline-block;
  padding: 12px 30px;
  background: #fdb90e;
  color: #001E5A;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.gco-three-column-footer__button:hover {
  background: #D69A01;
}

/* 3. LARGE MULTI-ROW CONTENT SECTION */
.gco-content-section {
  padding: 80px 20px;
  background: #ffffff;
}

.gco-content-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.gco-content-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.gco-content-section__heading {
  font-size: 36px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
}

.gco-divider {
  width: 80px;
  height: 1px;
  background: #001E5A;
  margin: 0 auto 40px;
}

.gco-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

.gco-content-row__left,
.gco-content-row__right {
  display: flex;
  flex-direction: column;
}

.gco-content-row__small-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 20px;
}

.gco-content-row__image {
  width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  align-self: center;
}

.gco-content-row__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-content-row__text--centered {
  text-align: center;
}

.gco-content-row__bold-text {
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-content-row__buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.gco-app-button {
  display: inline-block;
}

.gco-app-button img {
  height: 50px;
  width: auto;
  display: block;
}

.gco-content-row__link {
  font-size: 14px;
  color: #0096c8;
  text-decoration: none;
  margin-top: 10px;
  text-align: center;
}

.gco-content-row__button {
  display: inline-block;
  padding: 10px 25px;
  background: #fdb90e;
  color: #001E5A;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.gco-content-row__button:hover {
  background: #D69A01;
}

.gco-content-row__small-heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-content-row__final-text {
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-top: 40px;
}

/* Row 3 specific styles */
.gco-content-row-3 {
  margin-bottom: 40px;
}

.gco-content-row-3__top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.gco-content-row-3__small-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.gco-content-row-3__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.gco-content-row-3__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.gco-content-row-3__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gco-content-row-3__small-heading {
  font-size: 20px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-content-row-3__image {
  width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gco-content-row-3__button {
  display: inline-block;
  padding: 10px 25px;
  background: #fdb90e;
  color: #001E5A;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.gco-content-row-3__button:hover {
  background: #D69A01;
}

/* Row 5 specific styles */
.gco-content-row-5 {
  margin-bottom: 40px;
}

.gco-content-row-5__top {
  margin-bottom: 30px;
}

.gco-content-row-5__small-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.gco-content-row-5__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.gco-content-row-5__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gco-content-row-5__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-content-row-5__image {
  width: 400px;
  height: auto;
  border-radius: 10px;
}

/* 4. FAQ SECTION */
.gco-faq-section {
  padding: 80px 20px;
  background: white;
}

.gco-faq-section__heading {
  font-size: 36px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
}

.gco-faq-section__bold-text {
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.gco-faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.gco-faq-item__question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.gco-faq-item__question:hover {
  color: #0096c8;
}

.gco-faq-item__question i {
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.gco-faq-item.active .gco-faq-item__question i {
  transform: rotate(180deg);
}

.gco-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gco-faq-item__answer p {
  padding: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

/* 5. MEDIA GRID SECTION */
.gco-media-section {
  padding: 80px 20px;
  background: #FFFFFF;
}

.gco-media-section__full-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.gco-media-section__full-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.gco-media-section__heading {
  font-size: 36px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
}

.gco-media-text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.gco-media-text-column {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  margin: 0;
}

.gco-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Row 2: Centered grid for 3 items */
.gco-media-grid-centered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
  justify-content: center;
}

.gco-media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gco-media-item__image {
  width: 80px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

.gco-media-item__heading {
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 10px;
}

.gco-media-item__text {
  font-size: 14px;
  line-height: 1.6;
  color: #001E5A;
}

/* 6. CTA GRID SECTION */
.gco-cta-section {
  padding: 80px 20px;
  background: white;
}

.gco-cta-section__heading {
  font-size: 36px;
  font-weight: 700;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
}

.gco-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gco-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
}

.gco-cta-item__image {
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
}

.gco-cta-item__heading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-cta-item__button {
  display: inline-block;
  padding: 12px 30px;
  background: #001E5A;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.gco-cta-item__button:hover {
  background: #fff;
  color: #001E5A;
  border: 1px solid #001E5A;
}

/* 7. COMPARISON CARDS SECTION */
.gco-comparison-section {
  padding: 80px 20px;
  background: #FFFFFF;
}

.gco-comparison-header {
  text-align: center;
  margin-bottom: 40px;
}

.gco-comparison-section__heading {
  font-size: 36px;
  font-weight: 700;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-comparison-button {
  display: inline-block;
  padding: 12px 30px;
  background: #fdb90e;
  color: #001E5A;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.gco-comparison-button:hover {
  background: #D69A01;
}

.gco-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gco-comparison-card {
  border: 1px solid #0096c8;
  border-radius: 10px;
  padding: 30px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gco-comparison-card__image {
  width: 80px;
  height: auto;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.gco-comparison-card__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 20px;
}

.gco-comparison-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  width: 100%;
  text-align: left;
}

.gco-comparison-card__list li {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.gco-comparison-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #001E5A;
  font-weight: bold;
}

/* 8. CENTERED TEXT SECTION */
.gco-centered-section {
  padding: 60px 20px;
  background: white;
}

.gco-centered-section__heading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
}

.gco-centered-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* MICROLET NEXT LANCETE – centered contact section (same layout as GCO, unique classes) */
.mnl-centered-contact-section {
  padding: 60px 20px;
  background: white;
}

.mnl-centered-contact-section__heading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 20px;
}

.mnl-centered-contact-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: #001E5A;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* 9. REFERENCES SECTION */
.gco-reference-section {
  padding: 40px 20px;
  background: #FEFEFE;
}

.gco-reference-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE: TABLET */
@media (max-width: 992px) {
  .gco-hero-section {
    padding: 60px 20px;
  }

  .gco-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .gco-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .gco-hero-two-column__subheading {
    font-size: 22px;
  }

  .gco-three-column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gco-content-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gco-content-row-3__columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gco-content-row-5__columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gco-media-text-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gco-media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .gco-media-grid-centered {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 600px;
  }

  .gco-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gco-comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .gco-hero-section {
    padding: 40px 20px;
  }

  .gco-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .gco-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .gco-hero-two-column__bold-text {
    font-size: 16px;
  }

  .gco-hero-two-column__subheading {
    font-size: 20px;
  }

  .gco-hero-two-column__buttons {
    justify-content: center;
  }

  .gco-three-column-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gco-three-column-item__image {
    width: 150px;
    height: 150px;
  }

  .gco-content-section__heading,
  .gco-faq-section__heading,
  .gco-media-section__heading,
  .gco-cta-section__heading,
  .gco-comparison-section__heading {
    font-size: 28px;
  }

  .gco-content-row-3__top {
    flex-direction: column;
    gap: 15px;
  }

  .gco-content-row-3__columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gco-content-row-5__columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gco-media-text-columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gco-media-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gco-media-grid-centered {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .gco-comparison-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gco-faq-item__question {
    font-size: 16px;
    padding: 15px 0;
  }

  .gco-reference-text {
    font-size: 11px;
  }
}

/* RESPONSIVE: VERY SMALL MOBILE */
@media (max-width: 480px) {
  .gco-hero-section {
    padding: 40px 20px;
  }

  .gco-hero-section__heading {
    font-size: 24px;
  }

  .gco-content-section,
  .gco-faq-section,
  .gco-media-section,
  .gco-cta-section,
  .gco-comparison-section {
    padding: 50px 20px;
  }

  .gco-content-section__heading,
  .gco-faq-section__heading,
  .gco-media-section__heading,
  .gco-cta-section__heading,
  .gco-comparison-section__heading {
    font-size: 24px;
  }

  .gco-reference-section {
    padding: 30px 20px;
  }
}

/* ============================================ */
/* ONPRO PAGE STYLES */
/* ============================================ */

/* 1. HERO SECTION */
.onpro-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.onpro-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.onpro-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onpro-hero__image--mobile {
  display: none;
}

.onpro-hero__image--desktop {
  display: block;
}

.onpro-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;  
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.onpro-hero__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.onpro-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.onpro-hero__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

/* 2. TWO-ROW, TWO-COLUMN CONTENT SECTION */
.onpro-content-grid {
  padding: 80px 20px;
  background: #FEFEFE;
}

.onpro-content-grid__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.onpro-content-grid__rows {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.onpro-content-grid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.onpro-content-grid__column {
  display: flex;
  flex-direction: column;
}

.onpro-content-grid__column-title {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
}

.onpro-content-grid__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.onpro-content-grid__list li {
  margin-bottom: 8px;
}

.onpro-content-grid__column-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* 3. LIGHT BLUE BACKGROUND SECTION */
.onpro-info-blue {
  padding: 60px 20px;
  background: #E5F6FE;
  max-width: 1200px;
  border-radius: 20px;
  margin: 0 auto;
}

.onpro-info-blue .container {
  max-width: 1200px;
  margin: 0 auto;
}

.onpro-info-blue__heading {
  font-size: 22px;
  font-weight: 600;
  color: #001E5A;
  margin-bottom: 15px;
  margin-top: 0;
}

.onpro-info-blue__heading:first-child {
  margin-top: 0;
}

.onpro-info-blue__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.onpro-info-blue__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.onpro-info-blue__list li {
  margin-bottom: 10px;
}

.onpro-info-blue__bold {
  font-weight: 700;
  font-size: 16px;
  color: #001E5A;
  margin-top: 20px;
  margin-bottom: 0;
}

/* 4. TABLE SECTION */
.onpro-table-section {
  padding: 80px 20px;
  background: #FEFEFE;
}

.onpro-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.onpro-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  min-width: 640px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.onpro-table thead {
  background: #001E5A;
  color: #fff;
}

.onpro-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}

.onpro-table tbody tr:nth-child(odd) {
  background: #fff;
}

.onpro-table tbody tr:nth-child(even) {
  background: #EEEEEE;
}

.onpro-table td {
  padding: 18px 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* RESPONSIVE: TABLET AND MOBILE */
@media (max-width: 768px) {
  .onpro-hero {
    min-height: 400px;
  }

  .onpro-hero__image--desktop {
    display: none;
  }

  .onpro-hero__image--mobile {
    display: block;
  }

  .onpro-hero__content {
    padding: 40px 20px;
  }

  .onpro-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .onpro-hero__text {
    font-size: 16px;
  }

  .onpro-content-grid {
    padding: 40px 20px;
  }

  .onpro-content-grid__heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .onpro-content-grid__rows {
    gap: 30px;
  }

  .onpro-content-grid__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .onpro-content-grid__column-title {
    font-size: 20px;
  }

  .onpro-info-blue {
    padding: 40px 20px;
    max-width: 340px;
  }

  .onpro-info-blue__heading {
    font-size: 20px;
  }

  .onpro-info-blue__text,
  .onpro-info-blue__list,
  .onpro-info-blue__bold {
    font-size: 15px;
  }

  .onpro-table-section {
    padding: 40px 20px;
  }

  .onpro-table-wrapper {
    margin: 0 -10px;
    padding: 0 10px;
  }

  .onpro-table {
    min-width: 600px;
  }

  .onpro-table th,
  .onpro-table td {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* ---------------------- */
/* DNEVNIK GUKOZE STYLES */
/* ---------------------- */

/* 1. HERO SECTION */
.dnevnik-hero-section {
  padding: 30px 10px;
  background: #FEFEFE;
}

.dnevnik-hero-section .container {
  max-width: 1200px;
}

.dnevnik-hero-section__heading {
  font-size: 40px;
  font-weight: 600;
  color: #001E5A;
  text-align: center;
  margin-bottom: 50px;
}

.dnevnik-hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dnevnik-hero-two-column__image {
  width: 100%;
}

.dnevnik-hero-two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.dnevnik-hero-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dnevnik-hero-two-column__subheading {
  font-size: 24px;
  font-weight: 600;
  color: #001E5A;
  margin: 0;
}

.dnevnik-hero-two-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #001E5A;
}

.dnevnik-hero-two-column__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #001E5A;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.dnevnik-hero-two-column__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #001E5A;
  font-size: 20px;
  font-weight: bold;
}

.dnevnik-hero-two-column__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.dnevnik-app-button {
  display: inline-block;
}

.dnevnik-app-button img {
  height: 50px;
  width: auto;
  display: block;
}

/* 2. CENTERED IMAGE & BUTTON SECTION */
.dnevnik-centered-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.dnevnik-centered-section .container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.dnevnik-centered-section__heading {
  font-size: 26px;
  font-weight: 400;
  color: #001E5A;
  text-align: center;
  margin: 0;
}

.dnevnik-centered-section__image-wrapper {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.dnevnik-centered-section__image-link {
  display: block;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dnevnik-centered-section__image-link:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.dnevnik-centered-section__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.dnevnik-centered-section__button-wrapper {
  display: flex;
  justify-content: center;
}

.dnevnik-centered-section__button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #001E5A;
  border-radius: 30px;
  background: #fff;
  color: #001E5A;
  transition: all 0.3s ease;
  display: inline-block;
}

.dnevnik-centered-section__button:hover {
  background: #001E5A;
  color: #fff;
}

/* RESPONSIVE: TABLET (max-width: 1024px) */
@media (max-width: 1024px) {
  .dnevnik-hero-section {
    padding: 60px 20px;
  }

  .dnevnik-hero-section__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .dnevnik-hero-two-column {
    gap: 40px;
    padding: 30px;
  }

  .dnevnik-hero-two-column__subheading {
    font-size: 22px;
  }

  .dnevnik-centered-section {
    padding: 50px 20px;
  }

  .dnevnik-centered-section__heading {
    font-size: 28px;
  }

  .dnevnik-centered-section__image-wrapper {
    max-width: 500px;
  }
}

/* RESPONSIVE: MOBILE (max-width: 768px) */
@media (max-width: 768px) {
  .dnevnik-hero-section {
    padding: 40px 20px;
  }

  .dnevnik-hero-section__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .dnevnik-hero-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .dnevnik-hero-two-column__subheading {
    font-size: 20px;
  }

  .dnevnik-hero-two-column__buttons {
    justify-content: center;
  }

  .dnevnik-centered-section {
    padding: 40px 20px;
  }

  .dnevnik-centered-section .container {
    gap: 25px;
  }

  .dnevnik-centered-section__heading {
    font-size: 24px;
  }

  .dnevnik-centered-section__image-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

  .dnevnik-centered-section__button {
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* ---------------------- */
/* BROSURE STYLES */
/* ---------------------- */

/* 1. HERO SECTION */
.brosure-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brosure-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.brosure-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brosure-hero__image--mobile {
  display: none;
}

.brosure-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;  
  background: linear-gradient(to right, rgba(0, 30, 90, 0.7) 0%, rgba(0, 30, 90, 0.3) 100%);
}

.brosure-hero__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.brosure-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.brosure-hero__text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

/* 2. BROCHURE CARDS SECTION */
.brosure-cards-section {
  padding: 60px 20px;
  background: #FEFEFE;
}

.brosure-cards-section .container {
  max-width: 1300px;
}

.brosure-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.brosure-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brosure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.brosure-card__image-wrapper {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.brosure-card__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.brosure-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #001E5A;
  margin: 20px 20px 15px 20px;
  line-height: 1.4;
}

.brosure-card__button {
  margin: 0 20px 20px 20px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #001E5A;
  border-radius: 25px;
  background: #001E5A;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  margin-top: auto;
}

.brosure-card__button:hover {
  background: #fff;
  color: #001E5A;
}

/* RESPONSIVE: TABLET (max-width: 1024px) */
@media (max-width: 1024px) {
  .brosure-hero__title {
    font-size: 40px;
  }

  .brosure-hero__text {
    font-size: 18px;
  }

  .brosure-cards-section {
    padding: 50px 20px;
  }

  .brosure-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* RESPONSIVE: MOBILE (max-width: 768px) */
@media (max-width: 768px) {
  .brosure-hero {
    min-height: 400px;
  }

  .brosure-hero__image--desktop {
    display: none;
  }

  .brosure-hero__image--mobile {
    display: block;
  }

  .brosure-hero__content {
    padding: 40px 20px;
  }

  .brosure-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .brosure-hero__text {
    font-size: 16px;
  }

  .brosure-cards-section {
    padding: 40px 20px;
  }

  .brosure-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brosure-card__title {
    font-size: 16px;
    margin: 15px 15px 12px 15px;
  }

  .brosure-card__button {
    margin: 0 15px 15px 15px;
    padding: 10px 24px;
    font-size: 14px;
  }
}
