/* =======================================================================
   CSS RESET & NORMALIZATION
   ======================================================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, 
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, 'Liberation Sans', sans-serif;
  font-size: 16px;
  background-color: #13253C;
  color: #F7F8F9;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #219C90;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #2be3e8;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
ul, ol {
  list-style-position: inside;
  padding-left: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, 'Liberation Sans', sans-serif;
  color: #F7F8F9;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
p, ul, ol, blockquote, address {
  margin-bottom: 16px;
  color: #C9D0DA;
}
blockquote {
  padding-left: 18px;
  border-left: 3px solid #219C90;
  color: #F7F8F9;
  font-style: italic;
}
cite {
  font-size: .97rem;
  color: #AEE2DF;
  margin-top: 5px;
  display: block;
}

/* =======================================================================
   BRAND & TECH FUTURISTIC THEMING
   ======================================================================= */
:root {
  --color-primary: #21436D;
  --color-primary-light: #2e68a6;
  --color-secondary: #219C90;
  --color-secondary-light: #44cfbb;
  --color-accent: #F7F8F9;
  --color-bg: #13253C;
  --color-bg-elevated: #183F5F;
  --color-bg-card: #173153;
  --color-light: #FFFFFF;
  --color-shadow: rgba(33,156,144,0.15);
  --color-border: #203A59;
  --color-text-main: #F7F8F9;
  --color-text-secondary: #b7e4e0;
  --shadow-elevated: 0 2px 18px 0 rgba(33,156,144,0.15);
  --radius-card: 16px;
}

body {
  background: linear-gradient(120deg, #1a314c 0%, #19344f 70%, #184143 100%);
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =======================================================================
   NAVBAR & HEADER STYLES
   ======================================================================= */
header {
  background-color: var(--color-bg);
  border-bottom: 1.5px solid var(--color-border);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 80px;
  padding: 0 28px;
  position: relative;
}
.main-nav > a img {
  height: 42px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--color-text-main);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .16s, color .16s;
  position: relative;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--color-secondary);
  color: var(--color-light);
  box-shadow: 0 0 8px 0 #219C90;
}
.main-nav .button.primary {
  margin-left: 32px;
  min-width: 150px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-secondary);
  z-index: 130;
  cursor: pointer;
  padding: 6px 12px;
  transition: color .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #35ffe2;
  filter: drop-shadow(0 0 3px #21e7c4);
}

/* MOBILE MENU CONTAINER */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(25, 52, 79, 0.98);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 350px;
  padding: 36px 0 0 0;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,0,.175,1);
  z-index: 200;
  box-shadow: -4px 0 48px 0 rgba(38,226,199,0.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #FF5C6A;
  font-size: 2.1rem;
  line-height: 1;
  padding: 8px 16px 16px 0;
  align-self: flex-end;
  margin-right: 12px;
  transition: color .13s, filter .13s;
  cursor: pointer;
  z-index: 210;
}
.mobile-menu-close:hover {
  color: #fff5;
  filter: drop-shadow(0 0 4px #FF5C6A);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 28px 32px 28px;
  width: 100%;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F7F8F9;
  padding: 10px 6px;
  border-radius: 7px;
  width: 100%;
  transition: background .17s, color .17s;
  margin: 0;
  box-sizing: border-box;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-bg);
}

@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 700px) {
  .main-nav {
    padding: 0 8px;
  }
}

/* =======================================================================
   BUTTONS
   ======================================================================= */
.button,
.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 28px;
  color: #F7F8F9;
  background-image: linear-gradient(90deg, #219C90 0%, #2be3e8 100%);
  border: none;
  box-shadow: 0 0 0 0 transparent, 0 4px 18px 0 var(--color-shadow);
  cursor: pointer;
  transition: box-shadow .17s, transform .17s, background .19s, color .14s;
  outline: none;
  position: relative;
  z-index: 1;
  text-decoration: none;
  margin-top: 10px;
}
.button.primary:hover,
.button.primary:focus {
  background-image: linear-gradient(90deg, #2be3e8 0%, #219C90 100%);
  color: #0d192a;
  box-shadow: 0 0 12px 0 #21e7c4, 0 6px 20px 0 #124e44;
  transform: translateY(-2px) scale(1.03);
}
.button:active {
  transform: translateY(1px) scale(0.99);
}
/* Ghost/Secondary button */
.button.secondary {
  background: transparent;
  border: 2px solid #219C90;
  color: #219C90;
  padding: 11px 25px;
  box-shadow: 0 2px 10px 0 rgba(33,156,144,0.09);
}
.button.secondary:hover,
.button.secondary:focus {
  background: #219C90;
  color: #182d44;
}
/* =======================================================================
   HERO & CTA SECTIONS
   ======================================================================= */
.hero, .hero-about, .contact-hero, .price-hero, .thank-you-msg {
  background: linear-gradient(100deg, #183461 60%, #219C90 100%);
  color: #F7F8F9;
  padding: 60px 0 40px 0;
}
.final-cta, .cta, .faq-cta {
  background: linear-gradient(90deg, #219C90 50%, #183461 100%);
  color: #FFF;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  box-shadow: 0 -2px 18px 0 #219C9020;
  padding: 48px 0 60px 0;
  margin-top: 40px;
  margin-bottom: 0;
}
.final-cta .content-wrapper, .cta .content-wrapper, .faq-cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.subheadline {
  font-size: 1.2rem;
  color: #AEE2DF;
  margin-bottom: 14px;
  font-weight: 400;
}

/* =======================================================================
   FEATURE LISTS, CARDS, & FLEX LAYOUTS
   ======================================================================= */
.features,
.service-list,
.feature-grid,
.highlighted-services {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.feature-grid,
.service-list {
  flex-wrap: wrap;
}
.feature-grid > li,
.service-list > li {
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px 0 var(--color-shadow);
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  min-width: 220px;
  min-height: 210px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .17s, border .18s, transform .20s;
  border: 1.5px solid #21436D33;
}
.feature-grid > li:hover,
.service-list > li:hover {
  box-shadow: 0 0 24px 0 #2be3e850, 0 4px 24px 0 #219C9020;
  border-color: #219C90;
  transform: translateY(-2px) scale(1.012);
}
.feature-grid img,
.service-list img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 6px #219C9070);
  margin-bottom: 10px;
}
.feature-grid h3, .service-list h2 {
  color: #AEE2DF;
  font-size: 1.15rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid p,
.service-list p {
  font-size: 1rem;
  color: #C9D0DA;
}

@media (min-width: 800px) {
  .feature-grid,
  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
  }
  .feature-grid > li, .service-list > li {
    max-width: 320px;
    min-width: 240px;
    flex-basis: 280px;
  }
}

.highlighted-services {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 10px 0;
  color: #F7F8F9;
}
.highlighted-services li {
  padding-left: 10px;
  border-left: 3px solid #219C90;
  margin-bottom: 7px;
  font-weight: 500;
  font-size: 1.01rem;
}

/* =======================================================================
   FLEXBOX: CONTENT GRID & SECTIONS
   ======================================================================= */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  margin-bottom: 20px;
  padding: 24px 28px;
  transition: box-shadow .17s, border .17s, transform .18s;
  border: 1.5px solid #21436D33;
}
.card:hover {
  box-shadow: 0 0 22px 0 #2be3e835, 0 4px 14px 0 #219C9020;
  border-color: #219C90;
  transform: translateY(-1px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =======================================================================
   PRICING TABLE
   ======================================================================= */
.pricing-table, .pricing-table .content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0 10px 0;
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 18px var(--color-shadow);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 14px;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
  color: #C9D0DA;
}
.pricing-table th {
  background: #173153;
  color: #AEE2DF;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* =======================================================================
   TEXT & LEGAL SECTIONS
   ======================================================================= */
.legal-text {
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  margin: 50px 0 0 0;
  padding: 32px 20px;
}
.legal-text h1, .legal-text h2 {
  color: #219C90;
}
.legal-text a {
  color: #219C90;
  text-decoration: underline;
}
.legal-text ul {
  margin-top: 12px;
  margin-bottom: 14px;
  color: #C9D0DA;
}

/* =======================================================================
   TESTIMONIAL CARDS
   ======================================================================= */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 38px 20px 24px;
  background: #F7F8F9;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 2px 16px 0 rgba(25, 70, 109, 0.07);
  color: #19344f;
  transition: box-shadow .18s, border .17s, transform .17s;
  border: 1.3px solid #219C905e;
}
.testimonial-card blockquote {
  color: #19344f;
  border-left: 3px solid #219C90;
  font-style: italic;
  padding-left: 18px;
  font-size: 1.1rem;
}
.testimonial-card cite {
  color: #219C90;
  font-size: 1.02rem;
}
.testimonial-card:hover {
  border-color: #21436D;
  box-shadow: 0 0 20px 0 #219C9020;
  transform: scale(1.012);
}

/* =======================================================================
   FOOTER
   ======================================================================= */
footer {
  background: #173153;
  border-top: 2px solid #213D5A;
  padding: 32px 0 0 0;
  margin-top: 40px;
  color: #c3e7e3;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-bottom: 16px;
}
.footer-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-nav a {
  color: #AEE2DF;
  font-size: .99rem;
  transition: color .18s;
}
.footer-nav a:hover {
  color: #2be3e8;
}
.footer-info {
  text-align: center;
  color: #BBD2D7;
  font-size: .98rem;
  padding: 10px 0 20px 0;
}

/* =======================================================================
   FAQ ACCORDION
   ======================================================================= */
.faq-accordion dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #219C90;
  background: #173153;
  padding: 12px 14px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.faq-accordion dd {
  background: #13253C;
  color: #C9D0DA;
  font-size: 1.005rem;
  line-height: 1.6;
  padding: 13px 20px 15px 20px;
  margin-bottom: 10px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px 0 #17315320;
}

/* =======================================================================
   ADDRESS, MAP-EMBED, & MINOR ESSENTIALS
   ======================================================================= */
address {
  font-style: normal;
  background: #219C90;
  color: #173153;
  padding: 10px 18px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.03rem;
  margin-top: 4px;
}
.map-embed {
  background: #173153;
  color: #AEE2DF;
  font-size: .98rem;
  padding: 13px 17px;
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 1px 6px 0 #219C9055;
}
.privacy-hint {
  color: #AEE2DF;
  background: #21436D44;
  padding: 9px 16px;
  border-radius: 0 0 8px 8px;
  font-size: .99rem;
  margin-top: 0;
}
@media (max-width: 680px) {
  .container {
    padding: 0 7px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.13rem; }
  .main-nav {
    height: 68px;
    gap: 10px;
    padding: 0 5px;
  }
}

/* =======================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #183461 60%, #219C90 100%);
  color: #F7F8F9;
  padding: 20px 18px;
  z-index: 9999;
  box-shadow: 0 -4px 36px 0 #21436D30;
  font-size: 1rem;
  animation: cookieBanner-in .4s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieBanner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: 16px;
}
.cookie-btn {
  border-radius: 22px;
  padding: 8px 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0px;
  transition: background .14s, color .15s, border .13s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #219C90 0%, #2be3e8 100%);
  color: #FFF;
  border: none;
}
.cookie-btn.accept:hover { background: #2be3e8; color: #21436D; }
.cookie-btn.reject {
  background: transparent;
  color: #F7F8F9;
  border: 2px solid #219C90;
}
.cookie-btn.reject:hover {
  background: #219C90;
  color: #183461;
}
.cookie-btn.settings {
  background: #173153;
  color: #AEE2DF;
  border: 1.5px solid #21436D66;
}
.cookie-btn.settings:hover {
  background: #219C90;
  color: #FFF;
  border-color: #219C90;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 10040;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,52,79,0.79);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn .23s cubic-bezier(.48,0,1,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-bg-card);
  color: #F7F8F9;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 #219C9058;
  max-width: 95vw;
  width: 435px;
  padding: 28px 23px 18px 23px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalIn .32s cubic-bezier(.46,0,.8,1);
}
@keyframes modalIn {
  from {transform: translateY(60px) scale(0.97);opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal .modal-close {
  position: absolute;
  top: 6px;
  right: 14px;
  font-size: 1.7rem;
  background: transparent;
  color: #AEE2DF;
  border: none;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .modal-close:hover { color: #fff; }
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2be3e8;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #21436D33;
  padding: 7px 12px;
  border-radius: 9px;
  margin-bottom: 10px;
}
.cookie-cat .toggle {
  width: 36px;
  height: 22px;
  appearance: none;
  background: #21436D;
  border-radius: 44px;
  position: relative;
  outline: none;
  border: 1.2px solid #219C9077;
  cursor: pointer;
  transition: background .14s, border .13s;
}
.cookie-cat .toggle:checked {
  background: #219C90;
  border-color: #2be3e8;
}
.cookie-cat .toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #F7F8F9;
  transition: transform .14s cubic-bezier(.46,.04,.4,1);
}
.cookie-cat .toggle:checked:before {
  transform: translateX(14px);
  background: #2be3e8;
}
.cookie-cat label {
  color: #F7F8F9;
  font-size: 1.04rem;
  font-weight: 400;
  padding-left: 7px;
}

@media (max-width: 750px) {
  .footer-nav ul, .content-wrapper { gap: 14px; }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    padding: 17px 4px;
    font-size: .99rem;
  }
}
@media (max-width: 540px) {
  .cookie-modal {
    max-width: 96vw;
    width: 99vw;
    padding: 20px 2vw 13px 2vw;
  }
}

/* =======================================================================
   GLOBAL ANIMATIONS
   ======================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .button, .card, .testimonial-card, .feature-grid > li,
  .service-list > li, .card, .main-nav ul li a, .mobile-nav a, .cookie-banner, .mobile-menu {
    transition: box-shadow .18s, border .17s, transform .19s, background .12s, color .14s;
  }
}

/* =======================================================================
   SPACING & LAYOUT CORRECTIONS
   ======================================================================= */
.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; }

/* Padding between all cards/sections */
section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* Ensure no content overlapping */
.card-container > *,
.feature-grid > *,
.service-list > *,
.highlighted-services > *,
.testimonial-card {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 20px;
}

/* Responsive flex to column on mobile */
@media (max-width: 900px) {
  .feature-grid,
  .service-list,
  .content-grid,
  .card-container,
  .footer-nav ul {
    flex-direction: column;
    gap: 16px !important;
  }
  .feature-grid > li, .service-list > li, .card {
    max-width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }
}

/* TYPOGRAPHY SCALE
   14,16,18,24,32,48px */
@media (max-width: 500px) {
  h1 { font-size: 1.1rem!important;}
  h2 { font-size: 1.04rem; }
  .subheadline, p, ul, ol, address { font-size: .99rem; }
}

/* Remove webkit autofill yellow for form fields */
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--color-bg-elevated) inset !important;
  -webkit-text-fill-color: #219C90;
}
/* ========== END ========== */