/* ===================
   CSS RESET & BASE
   =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Roboto", Arial, sans-serif;
  background: #FAF9F6;
  color: #1c283b;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2A558C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #43B34D;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}


/* ===========================
   FONT SCALING & TYPOGRAPHY
   =========================== */
h1, .h1 {
  font-family: "Montserrat", 'Segoe UI', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #143565;
  margin-bottom: 24px;
  line-height: 1.12;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: "Montserrat", 'Segoe UI', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #2A558C;
  margin-bottom: 20px;
  line-height: 1.15;
}
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #338053;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
  color: #143565;
}
p, li, .body-text {
  font-size: 1rem;
  font-family: "Roboto", Arial, sans-serif;
  color: #2e3851;
  margin-bottom: 12px;
}

@media (min-width: 481px) {
  h1, .h1 { font-size: 2.8rem; }
  h2, .h2 { font-size: 2.1rem; }
  h3 { font-size: 1.3rem; }
  p, li, .body-text { font-size: 1.06rem; }
}
@media (min-width: 768px) {
  h1, .h1 { font-size: 3rem; }
  h2, .h2 { font-size: 2.3rem; }
  h3 { font-size: 1.45rem; }
  p, li, .body-text { font-size: 1.13rem; }
}
@media (min-width: 1200px) {
  h1, .h1 { font-size: 3.5rem; }
}


/* ===================
   LAYOUT HELPERS
   =================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(60, 73, 122, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(60,73,122,0.14);
  transform: translateY(-2px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f7faff;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(44, 107, 171, 0.07);
  padding: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  max-width: 600px;
  color: #234;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(41, 126, 88, 0.10);
  transform: scale(1.012);
}
.testimonial-meta {
  color: #568ab3;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.02rem;
  margin-top: 4px;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}

/* ===============================
   BRAND COLORS & SOFT PASTELS
   =============================== */
:root {
  --brand-primary: #143565;
  --brand-secondary: #43B34D;
  --brand-accent: #FAF9F6;

  --pastel-blue: #F0F4FD;
  --pastel-green: #D6F9E5;
  --pastel-yellow: #FFF8DE;
  --pastel-pink: #FFE9F1;
  --pastel-lavender: #EFE8FF;
  --pastel-cement: #F5F7FA;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.9s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===============================
   HEADER & MAIN NAVIGATION
   =============================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #F0F4FD 0%, #D6F9E5 100%);
  box-shadow: 0 1px 0 #e6eaf3;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 18px 0;
}
.main-nav > a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.08rem;
  color: #234;
  font-weight: 500;
  transition: color .15s;
  opacity: 0.85;
  border-radius: 8px;
  padding: 4px 10px;
}
.main-nav > a.cta {
  background: linear-gradient(90deg, #D6F9E5 0%, #EFE8FF 100%);
  color: #143565;
  font-weight: 600;
  border: none;
  border-radius: 18px;
  padding: 8px 24px;
  box-shadow: 0 2px 12px rgba(67,179,77,0.09);
  letter-spacing: 0.02em;
  margin-left: 10px;
  transition: background .18s, color .18s, box-shadow .18s;
}
.main-nav > a.cta:hover, .main-nav > a.cta:focus {
  background: linear-gradient(90deg, #C3ECDB 0%, #EFE8FF 100%);
  color: #338053;
  box-shadow: 0 4px 24px rgba(67,179,77,0.15);
}
.main-nav > a:hover {
  color: #43B34D;
  background: #F5F7FA;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 6px;
  display: inline-block;
}

@media (max-width: 991px) {
  .main-nav {
    gap: 16px;
    padding: 12px 0 12px 0;
  }
}
@media (max-width: 840px) {
  .main-nav {
    gap: 8px;
    flex-wrap: wrap;
  }
}
@media (max-width: 840px) {
  .main-nav > a {
    padding: 3px 8px;
    font-size: 1rem;
  }
  .main-nav img { height: 32px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .main-nav img {
    height: 30px;
  }
}

/* ===================
   MOBILE MENU
   =================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  background: #fff;
  color: #338053;
  border: none;
  font-size: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(44,107,171,0.04);
  z-index: 3020;
  cursor: pointer;
  transition: background .14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F0F4FD;
  color: #143565;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 3050;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(100deg, #F7F6FB 0%, #E4FBF0 100%);
  box-shadow: 0 6px 32px 0 rgba(40, 68, 85, 0.13);
  transform: translateX(-100vw);
  transition: transform .36s cubic-bezier(.7,0,0,1), opacity .18s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #338053;
  padding: 12px 24px 6px 6px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 3100;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #143565;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 28px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.22rem;
  color: #143565;
  background: #fff;
  border-radius: 9px;
  padding: 8px 18px;
  font-weight: 500;
  transition: background .15s, color .15s;
  margin-right: 0;
  margin-bottom: 3px;
}
.mobile-nav a:hover {
  background: #EFF7F6;
  color: #43B34D;
}


/* ===================
   HERO SECTIONS
   =================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  margin-bottom: 60px;
  padding: 0;
  background: linear-gradient(100deg, #F0F4FD 60%, #D6F9E5 100%);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 8px 38px 8px;
}
.hero .content-wrapper {
  text-align: left;
  align-items: flex-start;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.hero h1 {
  color: #143565;
  text-shadow: 0 2px 22px #e9e4f8;
}
.hero p {
  color: #2A558C;
  margin-bottom: 20px;
  font-size: 1.13rem;
}
.hero .cta {
  margin-top: 6px;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .hero .content-wrapper {
    text-align: left;
    align-items: flex-start;
  }
  .hero {
    min-height: 100px;
    margin-bottom: 36px;
  }
}

/* ===================
   FEATURES LIST
   =================== */
.features {
  background: var(--pastel-cement);
  border-radius: 14px;
  margin-bottom: 40px;
}
.features ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.1rem;
  color: #2e3851;
  padding: 10px 0px 10px 0px;
  line-height: 1.45;
  border-bottom: 1px solid #e2e5f0;
}
.features ul li:last-child {
  border-bottom: none;
}
.features ul img {
  height: 32px;
  width: 32px;
  background: #E9F5F5;
  border-radius: 50%;
  padding: 4px;
  margin-right: 0;
  box-shadow: 0 2px 12px 0 rgba(67,179,77,0.07);
}

/* ===================
   SERVICES LIST
   =================== */
.services {
  background: #F0F4FD;
  border-radius: 14px;
  margin-bottom: 44px;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 18px 0 0 0;
}
.services ul li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 18px 0 rgba(20,53,101,0.06);
  flex: 1 1 290px;
  min-width: 220px;
  max-width: 390px;
  padding: 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid #43B34D;
  transition: box-shadow .18s, transform .18s;
}
.services ul li:hover {
  box-shadow: 0 8px 30px 0 rgba(44, 107, 171, 0.10);
  border-left: 6px solid #143565;
  transform: scale(1.01);
}
.services ul h3 {
  color: #2A558C;
}
.services ul p, .services ul strong {
  font-size: 1rem;
  color: #2e3851;
}

@media (max-width: 900px) {
  .services ul {
    gap: 18px;
  }
  .services ul li {
    min-width: 180px;
    max-width: 100%;
    padding: 20px 12px;
  }
}
@media (max-width: 768px) {
  .services ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===================
   CTA SECTIONS
   =================== */
.cta {
  background: linear-gradient(94deg, #EFE8FF 0%, #D6F9E5 100%);
  padding: 50px 0;
  border-radius: 16px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 3px 20px 0 rgba(44, 107, 171, 0.04);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #143565;
}
.cta p {
  color: #338053;
  margin-bottom: 22px;
}
.cta .cta {
  margin-top: 20px;
}

@media (max-width: 600px) {
  .cta {
    padding: 24px 0;
  }
}

/* ===================
   BUTTONS & LINKS
   =================== */
.cta, button, input[type="submit"], .btn {
  background: linear-gradient(94deg, #43B34D 0%, #338053 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 12px 32px;
  font-size: 1.13rem;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 600;
  box-shadow: 0 2px 18px rgba(67,179,77,0.12);
  cursor: pointer;
  outline: none;
  transition: background .2s, box-shadow .2s, color .15s, transform .18s;
  display: inline-block;
}
.cta:hover, button:hover, .btn:hover, .cta:focus, button:focus {
  background: linear-gradient(98deg, #338053 0%, #183C6A 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(44, 107, 171, 0.12);
  transform: scale(1.03);
}
.button-secondary, .btn-secondary {
  background: linear-gradient(92deg, #143565 0%, #43B34D 100%);
  color: #fff;
  border-radius: 18px;
  font-weight: 500;
}
.button-secondary:hover, .btn-secondary:hover, .button-secondary:focus {
  background: linear-gradient(98deg, #2466b1 0%, #338053 100%);
}

/* ===================
   CARDS
   =================== */
.card {
  background: linear-gradient(96deg, #FAF9F6 0%, #F0F4FD 60%, #FBFDEF 100%);
  border: 1px solid #dfecf2;
  box-shadow: 0 3px 20px 0 rgba(44, 107, 171, 0.08);
  border-radius: 18px;
  transition: box-shadow .16s, transform .19s;
}

/* ===================
   TESTIMONIALS
   =================== */
.testimonials {
  background: #F7FAFF;
  border-radius: 14px;
  margin-bottom: 46px;
  padding-top: 20px;
  padding-bottom: 12px;
}
.testimonials .testimonial-card {
  margin-bottom: 24px;
  background: #fff;
  color: #244;
  box-shadow: 0 2px 16px 0 rgba(20, 53, 101, 0.06);
}
.testimonials .testimonial-meta {
  color: #338053;
}

/* ===================
   FOOTER
   =================== */
footer {
  background: linear-gradient(98deg, #EFE8FF 0%, #F0F4FD 82%, #D6F9E5 100%);
  padding: 28px 0 10px 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -2px 10px rgba(67,179,77,0.04);
  margin-top: 34px;
}
.company-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 0 18px 18px 18px;
  font-family: "Roboto", Arial, sans-serif;
  color: #143565;
  font-size: 1.02rem;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}
.footer-menu a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.03rem;
  color: #338053;
  opacity: .78;
  margin-bottom: 8px;
  border-radius: 7px;
  padding: 3px 12px;
  transition: background .12s, color .17s;
}
.footer-menu a:hover {
  color: #143565;
  background: #E9F5F5;
  opacity: 0.98;
}

@media (max-width: 600px) {
  .footer-menu {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .company-data {
    font-size: 0.98rem;
    padding: 0 6px 18px 6px;
  }
}

/* ===============
   CONTACT PAGE
   =============== */
.contact .content-wrapper {
  background: #F9EEF7;
  border-radius: 13px;
  padding: 28px 22px;
  gap: 18px;
}
.contact-info-hint {
  background: #fffbe6;
  color: #826100;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: .97rem;
  font-style: italic;
  box-shadow: 0 1px 7px #ffeeae33;
}
.contact ul {
  margin-top: 9px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact ul li {
  font-size: 1.05rem;
  color: #234;
}
.contact a {
  color: #338053;
  word-break: break-all;
}
.contact a:hover, .contact a:focus { color: #143565; }

/* ===============
   LEGAL PAGES
   =============== */
.legal .content-wrapper {
  background: #F0F4FD;
  border-radius: 12px;
  padding: 34px 24px;
  gap: 13px;
}
.legal h1, .legal h2 {
  color: #2A558C;
}
.legal ul {
  margin: 12px 0 0 16px;
  list-style: disc inside;
  color: #38507c;
  font-size: 1rem;
}
.legal a {
  color: #43B34D;
  word-break: break-all;
}
.legal a:hover, .legal a:focus {
  color: #143565;
}

/* ===================
   THANK YOU PAGE
   =================== */
.thank-you .content-wrapper {
  background: #D6F9E5;
  border-radius: 15px;
  padding: 44px 20px;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.thank-you h1 { color: #143565; margin-bottom: 10px; }
.thank-you p { color: #338053; margin-bottom: 20px; }

/* ===================
   COOKIE CONSENT BANNER
   =================== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4100;
  background: linear-gradient(98deg, #FFF8DE 0%, #FAF9F6 100%);
  box-shadow: 0 -3px 18px 0 rgba(44,107,171,0.08);
  padding: 24px 12px 20px 12px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 1;
  animation: fadeIn .6s;
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#cookie-banner p {
  color: #234;
  font-size: 1.05rem;
}
#cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
#cookie-actions button {
  border-radius: 14px;
  font-size: 1rem;
  padding: 9px 24px;
  margin-bottom: 4px;
  margin-top: 2px;
  font-family: "Montserrat", Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .13s;
}
#cookie-accept {
  background: linear-gradient(94deg, #43B34D 0%, #338053 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 8px 0 rgba(67,179,77,0.09);
}
#cookie-accept:hover, #cookie-accept:focus {
  background: linear-gradient(92deg, #143565 0%, #43B34D 100%);
  color: #fff;
}
#cookie-decline {
  background: #fff;
  color: #143565;
  border: 1px solid #E6EAF3;
  font-weight: 500;
}
#cookie-decline:hover, #cookie-decline:focus {
  background: #F0F4FD;
  color: #338053;
}
#cookie-settings {
  background: #EFE8FF;
  color: #2A558C;
  font-weight: 500;
  border: 1px solid #D6F9E5;
}
#cookie-settings:hover, #cookie-settings:focus {
  background: #D6F9E5;
  color: #143565;
}

/* COOKIE MODAL */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,84,119,0.22);
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s;
}
#cookie-modal-overlay.open {
  display: flex;
}
#cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 rgba(44,107,171,0.17);
  padding: 40px 32px;
  max-width: 98vw;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  animation: fadeIn .35s;
  position: relative;
}
#cookie-modal h3 {
  font-size: 1.24rem;
  color: #143565;
  margin-bottom: 9px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #F0F4FD;
}
#cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
#cookie-modal label {
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.07rem;
  color: #234;
}
#cookie-modal input[type='checkbox'] {
  accent-color: #43B34D;
  width: 18px;
  height: 18px;
}
#cookie-modal .category-required {
  color: #338053;
  background: #E4FBF0;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  padding: 2px 10px;
  margin-left: 8px;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
#cookie-modal button {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 14px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .16s, color .13s;
  font-family: "Montserrat", Arial, sans-serif;
}
#cookie-modal .save {
  background: linear-gradient(94deg, #43B34D 0%, #338053 100%);
  color: #fff;
  font-weight: 600;
}
#cookie-modal .save:hover {background: linear-gradient(92deg, #338053 0%, #143565 100%);}
#cookie-modal .cancel {
  background: #EFE8FF;
  color: #2A558C;
  border: 1px solid #D6F9E5;
}
#cookie-modal .cancel:hover {background: #D6F9E5; color: #143565;}
#cookie-modal .close-modal {
  font-size: 2rem;
  color: #43B34D;
  background: transparent;
  border: none;
  position: absolute;
  right: 18px;
  top: 14px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color .15s;
}
#cookie-modal .close-modal:hover {color: #143565;}

@media (max-width: 600px) {
  #cookie-modal {
    padding: 22px 10px;
    min-width: 0;
    width: 94vw;
  }
}

/* ===================
   UTILS
   =================== */
::-webkit-input-placeholder { color:#bdbec5; }
::-moz-placeholder { color:#bdbec5; }
:-ms-input-placeholder { color:#bdbec5; }
::placeholder { color:#bdbec5; }

[tabindex]:focus, a:focus, button:focus {
  outline: 2px solid #43B34D;
  outline-offset: 1.5px;
}

/* Subtle hover states for list menus */
li > a {
  transition: color .14s;
}
li > a:hover {
  color: #43B34D;
}

/* Hide scrollbars for mobile menu */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/* ========================
   SPACING & ALIGNMENT
   ======================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========================
   RESPONSIVENESS
   ======================== */
@media (max-width: 1080px) {
  .container { max-width: 97vw; }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.54rem; }
  h2, .h2 { font-size: 1.18rem; }
  h3 { font-size: 1.08rem; }
  .container { padding: 0 2vw; }
  .section { padding: 17px 4px; margin-bottom: 24px; }
}
