/* RESET & NORMALIZE --------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, 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, menu, ol, ul, li, fieldset, form, label, legend, caption, article, aside, figure, figcaption, footer, header, hgroup, nav, section, main {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F1F2F4;
  color: #223;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #217D73;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #24486C;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
ul, ol {
  margin-left: 1.2em;
}

/* FONTS ------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24486C;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.75rem; line-height: 1.07; margin-bottom: 16px;}
h2 {font-size: 2rem; line-height: 1.1; margin-bottom: 16px;}
h3 {font-size: 1.375rem; margin-bottom: 12px;}
h4 {font-size: 1.1rem; margin-bottom: 10px;}
p, ul, ol {margin-bottom: 16px;}
strong {color: #217D73;}

/* CONTAINER & LAYOUTS ----------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(36,72,108,0.06);
  position: relative;
  transition: box-shadow 0.25s cubic-bezier(.48,.04,.51,1.17);
}
.section:hover {
  box-shadow: 0 4px 28px 0 rgba(39,174,161,0.14);
}
@media (max-width: 900px) {
  .container {padding: 0 8px;}
  .section {padding: 28px 8px;}
}
@media (max-width: 768px) {
  .section {padding: 20px 4px; margin-bottom: 40px;}
}

/* NAVBAR ------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(36,72,108,0.08);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 98;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 28px;
  padding: 20px 0 12px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 12px;
}
.main-nav > a {
  color: #24486C;
  font-weight: 600;
  position: relative;
  transition: color 0.22s cubic-bezier(.59,.01,.51,1.07);
  padding: 6px 8px 6px 8px;
  border-radius: 8px;
  letter-spacing: 0.01em;
}
.main-nav > a:not(.cta-primary):hover,
.main-nav > a:not(.cta-primary):focus {
  color: #217D73;
  background: #F1F2F4;
}
.cta-primary {
  display: inline-block;
  background: #27AEA1;
  color: #fff !important;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 26px;
  border-radius: 999px;
  font-size: 1.07rem;
  box-shadow: 0 2px 16px 0 rgba(36,72,108,0.08);
  transition: background 0.18s, transform 0.15s, box-shadow 0.17s;
  text-align: center;
  margin-left: 10px;
  position: relative;
  z-index: 1;
}
.cta-primary:hover, .cta-primary:focus {
  background: #217D73;
  transform: scale(1.045) translateY(-2px) rotate(-4deg);
  box-shadow: 0 6px 22px 0 rgba(39,174,161,0.13);
}

/* MOBILE NAVIGATION (Hamburger) ------------- */
.mobile-menu-toggle {
  display: none;
  background: #24486C;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 9px;
  padding: 2px 16px 2px 12px;
  margin-left: auto;
  margin-top: 7px;
  box-shadow: 0 2px 16px 0 rgba(36,72,108,0.10);
  cursor: pointer;
  transition: background 0.16s, transform 0.15s;
  z-index: 102;
}
.mobile-menu-toggle:active {
  background: #217D73;
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  z-index: 110;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.46,1.03,.49,.99);
  box-shadow: 0 0 0 0 rgba(36,72,108,0);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  padding: 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 28px 0 rgba(36,72,108,0.17);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #27AEA1;
  background: none;
  border: none;
  align-self: flex-end;
  margin-right: 28px;
  margin-top: 14px;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 151;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #217D73;
}
.mobile-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 92%;
  padding-left: 28px;
}
.mobile-nav a {
  color: #24486C;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.11rem;
  padding: 11px 12px;
  border-radius: 11px;
  transition: background 0.14s, color 0.15s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1F2F4;
  color: #217D73;
}
@media (max-width: 1050px) {
  .main-nav > a:not(.cta-primary), .cta-primary {
    font-size: 0.97rem;
    padding: 8px 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 0 18px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 18px;
    right: 18px;
  }
  .mobile-menu {
    width: 100vw;
    min-height: 100vh;
    padding-top: 32px;
  }
}

/* HERO SECTION ------------------------------ */
section:first-of-type {
  background: #27AEA1 linear-gradient(104deg, #27AEA1 68%, #F1F2F4 100%);
  color: #fff;
  border-radius: 0 0 38px 38px;
  padding-top: 56px;
  margin-bottom: 48px;
}
section:first-of-type h1,
section:first-of-type h2,
section:first-of-type p,
section:first-of-type .cta-primary {
  color: #fff;
}
section:first-of-type .cta-primary {
  background: #24486C;
}
section:first-of-type .cta-primary:hover, section:first-of-type .cta-primary:focus {
  background: #fff;
  color: #24486C!important;
}
@media (max-width: 768px) {
  section:first-of-type {padding: 38px 0 22px 0;}
  section:first-of-type h1 {font-size: 2.15rem;}
}

/* FLEX UTILS -------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 7px 0 rgba(36,72,108,0.04);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 320px;
  position: relative;
  padding: 28px 16px;
  transition: box-shadow 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(39,174,161,0.15);
  transform: translateY(-3px) scale(1.02) rotate(-0.5deg);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* TESTIMONIALS ------------------------------ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff8ee;
  border-radius: 17px;
  border-left: 8px solid #27AEA1;
  box-shadow: 0 2px 12px 0 rgba(36,72,108,0.09);
  font-size: 1.07rem;
  line-height: 1.7;
  color: #24486C;
  min-width: 220px;
  transition: box-shadow 0.17s, border-color .16s;
  position: relative;
}
.testimonial-card p {
  color: #223!important;
  font-style: italic;
}
.testimonial-card span {
  color: #27AEA1;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-left: 17px;
  margin-top: -7px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(39,174,161,0.18);
  border-color: #217D73;
  background: #FFF6DF;
}
@media (max-width: 768px) {
  .testimonial-card {padding: 16px 10px;}
}

/* SERVICE CARDS ----------------------------- */
.service-card {
  background: #EAFFFB;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(36,72,108,0.06);
  margin-bottom: 20px;
  padding: 24px 18px 14px 20px;
  border-left: 7px solid #24486C;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
  position: relative;
  transition: box-shadow .15s, border-color .15s, background .17s;
}
.service-card:hover {
  box-shadow: 0 7px 30px 0 rgba(39,174,161,0.19);
  border-color: #27AEA1;
  background: #c8fff1;
}

/* FEATURE ITEMS ----------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  background: #F8FDFB;
  padding: 18px 14px;
  border-radius: 13px;
}

/* MAP PLACEHOLDER --------------------------- */
.map-placeholder {
  background: #F1F2F4;
  color: #999;
  text-align: center;
  border-radius: 8px;
  border: 2px dashed #27AEA1;
  padding: 36px 0;
  margin-top: 12px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* FOOTER ------------------------------------ */
footer {
  background: #24486C;
  color: #fff;
  padding: 32px 0 18px 0;
  margin-top: 30px;
  border-radius: 45px 45px 0 0;
  font-size: 0.97rem;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 10px;
}
.footer-brand p, .contact-snippet p {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.95;
  font-weight: 500;
  position: relative;
  border-radius: 7px;
  transition: background 0.14s, color 0.12s;
  padding: 6px 9px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #217D73;
  color: #fff;
  opacity: 1;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.footer-social a img {
  width: 30px; height: 30px;
  border-radius: 7px;
  filter: drop-shadow(0 2px 6px rgba(39,174,161,0.18));
  transition: transform .12s, filter .15s;
}
.footer-social a:hover img {
  transform: scale(1.07) rotate(-6deg);
  filter: drop-shadow(0 6px 26px rgba(39,174,161,0.18)) brightness(1.1);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {gap: 10px;}
}

/* LISTS & OLs -------------------------------- */
ul, ol {
  font-size: 1rem;
  padding-left: 24px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 3px;
  padding-left: 0;
  position: relative;
}
ul li strong, ol li strong {
  color: #24486C;
}

/* NEWSLETTER TAGS --------------------------- */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-top: 15px;
  margin-bottom: 0;
}
.popular-tags li {
  background: #EAFFFB;
  color: #217D73;
  font-weight: 700;
  border-radius: 14px;
  padding: 7px 18px;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px 0 rgba(36,72,108,0.06);
  transition: background 0.13s, color 0.14s;
  cursor: pointer;
}
.popular-tags li:hover {
  background: #27AEA1;
  color: #fff;
}

/* SEARCH SECTION (Blog) --------------------- */
.search-section {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.search-section input, .search-section select {
  border-radius: 10px;
  border: 1.5px solid #27AEA1;
  padding: 7px 12px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.12s;
}
.search-section input:focus,
.search-section select:focus {
  border-color: #217D73;
}
.search-section label {
  color: #24486C;
  font-weight: 700;
  font-size: 1rem;
}

/* FORM ELEMENTS & BUTTONS ------------------- */
button, .button, input[type="submit"], .cta-primary {
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.16s, transform 0.13s;
}
.button, .cta-primary {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: #27AEA1;
  padding: 11px 28px;
  border-radius: 999px;
  box-shadow: 0 2px 12px 0 rgba(36,72,108,0.10);
  font-size: 1.07rem;
  text-align: center;
  border: none;
  margin-top: 6px;
}
.button:hover, .cta-primary:hover, .button:focus, .cta-primary:focus {
  background: #217D73;
  color: #fff;
  box-shadow: 0 7px 22px rgba(39,174,161,0.18);
  transform: rotate(-1.5deg) scale(1.045);
}
input, textarea {
  background: #fff;
  border-radius: 7px;
  padding: 8px 12px;
  border: 1.5px solid #F1F2F4;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: border-color 0.14s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  border-color: #27AEA1;
  box-shadow: 0 2px 8px 0 rgba(39,174,161,0.08);
}

/* ANIMATIONS & PLAYFUL DYNAMIC -------------- */
.section, .card, .testimonial-card, .service-card {
  animation: floatBounce 0.95s cubic-bezier(.77,-0.04,.83,1.03) both;
}
@keyframes floatBounce {
  from {transform: translateY(38px) scale(.94) rotate(-2deg);opacity: 0;}
  to {transform: none;opacity: 1;}
}
h1, h2, h3 {
  animation: slideFun 1.1s cubic-bezier(.65,-0.24,0.33,1.4) both;
}
@keyframes slideFun {
  0% {transform: translateY(48px) scale(.92) rotate(-3deg);opacity: 0;}
  63% {transform: translateY(-12px) scale(1.05) rotate(2deg);}
  100% {transform: none;opacity: 1;}
}
.cta-primary, .button {
  animation: popIn 1.15s cubic-bezier(.48,.04,.51,1.27) both;
}
@keyframes popIn {
  from {transform: scale(.82) rotate(-7deg);opacity: 0;}
  70% {transform: scale(1.1) rotate(3deg);}
  to {transform: none;opacity: 1;}
}

/* COLORFUL UNDERLINES (for fun!) ------------ */
h2, h3, h4 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 52px;
  height: 6px;
  border-radius: 6px;
  background: #FEF072;
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 2;
  animation: underlineSlide 1s .18s both;
}
@keyframes underlineSlide {
  from {width: 0;opacity: 0;}
  to {width: 52px;opacity: 1;}
}

/* FUN ICON ACCENTS (decorative only) -------- */
.card:before, .service-card:before {
  content: '\2730'; /* playful star/asterisk */
  color: #FEA440;
  font-size: 1.5rem;
  position: absolute;
  top: 18px; right: 18px;
  opacity: 0.17;
  pointer-events: none;
  animation: starWobble 3.5s infinite ease-in-out;
}
@keyframes starWobble {
  0%,100% {transform: rotate(0deg) scale(1);}
  50% {transform: rotate(21deg) scale(1.14);}
}

/* MOBILE FIRST RESPONSIVE ------------------- */
@media (max-width: 600px) {
  h1 {font-size: 1.39rem;}
  h2 {font-size: 1.11rem;}
  h3 {font-size: 1rem;}
  .cta-primary, .button {font-size: 0.98rem;}
  .container {padding: 0 5px;}
  .section {padding: 12px 2px; margin-bottom: 18px;}
}
@media (max-width: 400px) {
  .section {padding: 6px 2px;}
  h1, h2, h3 {margin-bottom: 8px;}
}

/* COOKIE CONSENT BANNER --------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff9e6;
  color: #223;
  border-top: 2px solid #24486C;
  box-shadow: 0 -1px 16px 0 rgba(39,174,161,0.09);
  padding: 18px 4vw 18px 4vw;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  animation: slideUpIn 1s cubic-bezier(.42,.17,.36,1.19) both;
  font-size: 1.07rem;
}
@keyframes slideUpIn {
  from {transform: translateY(100%);opacity: 0;}
  to {transform: none;opacity: 1;}
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-consent-banner button {
  min-width: 46px;
  background: #27AEA1;
  color: #fff;
  border-radius: 7px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 18px;
  box-shadow: 0 1px 5px 0 rgba(39,174,161,.14);
  transition: background 0.16s, color 0.11s, transform 0.09s;
}
.cookie-consent-banner button.cookie-reject {
  background: #FEA440;
  color: #24486C;
}
.cookie-consent-banner button.cookie-settings {
  background: #fff;
  color: #24486C;
  border: 2px solid #FEA440;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #217D73;
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}
.cookie-consent-banner button.cookie-settings:hover {
  background: #fff8ee;
  color: #217D73;
  border-color: #27AEA1;
}
.cookie-consent-banner button.cookie-reject:hover {
  background: #FEF072;
  color: #64461C;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 3vw 9px 3vw;
    font-size: 1rem;
    gap: 11px;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 7px;
  }
}

/* COOKIE CONSENT MODAL ---------------------- */
.cookie-modal-overlay {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: rgba(36,72,108,0.37);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {opacity: 1; pointer-events: all;}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  max-width: 410px;
  width: 96vw;
  padding: 40px 18px 24px 18px;
  box-shadow: 0 8px 40px 0 rgba(39,174,161,0.19);
  animation: popIn 1.15s cubic-bezier(.48,.04,.51,1.27) both;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {margin-bottom: 14px;color: #24486C;}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EAFFFB;
  border-radius: 8px;
  padding: 14px 13px;
  margin-bottom: 12px;
  font-size: 1.07rem;
}
.cookie-modal .category-switch {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.cookie-modal .switch {
  width: 40px; height: 22px;
  border-radius: 14px;
  background: #F1F2F4;
  position: relative;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-modal .switch input[type="checkbox"] {
  opacity: 0; width: 40px; height: 22px; position: absolute; left: 0; top: 0; margin: 0; cursor: pointer;
}
.cookie-modal .switch span {
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #27AEA1;
  transition: left 0.15s, background 0.14s;
}
.cookie-modal .switch input[type="checkbox"]:not(:checked) ~ span {
  background: #ccc;
}
.cookie-modal .switch input[type="checkbox"]:checked ~ span {
  background: #27AEA1;
  left: 20px;
}
.cookie-modal .cookie-actions {
  gap: 11px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 11px;
  right: 11px;
  font-size: 1.4rem;
  color: #27AEA1;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
  border-radius: 5px;
  transition: color 0.12s, background 0.13s;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  color: #217D73;
  background: #F1F2F4;
}
@media (max-width: 490px) {
  .cookie-modal {padding: 24px 6px 16px 6px;}
}

/* OTHER LAYOUT UTILITIES -------------------- */
.text-section {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
}
.text-section h2, .text-section h3, .text-section h4 {
  color: #217D73;
}

/* MICRO INTERACTIONS ------------------------ */
.card, .service-card, .cta-primary, .button, .testimonial-card, .popular-tags li {
  will-change: transform;
}
.card:active, .service-card:active, .cta-primary:active, .button:active, .testimonial-card:active, .popular-tags li:active {
  transform: scale(0.98) rotate(-2deg);
}

/* SPACINGS per SPECIFICATION ---------------- */
.card-container, .content-grid {
  gap: 24px;
}
.card, .service-card, .testimonial-card {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-item {gap: 15px;}
.text-image-section, .feature-item {
  gap: 30px;
}
@media (max-width: 900px) {
  .card-container, .content-grid {gap: 14px;}
  .section {margin-bottom: 40px; padding: 20px 4px;}
}

/* NO GRID/NO COLUMN CSS AT ALL! -------------- */
/* Absolutely no display: grid, grid-* or columns/column-* selectors in this code. Only flex is used for layouts. */
