/* ------------------------------------------------------
   JOMIRA BRIGHT: GEOMETRIC STRUCTURED PROFESSIONAL CSS
   Brand: #184C89 (primary), #59B798 (secondary), #F4F7FC (accent)
   Fonts: 'Montserrat' (display, headings), 'Open Sans' (body)
   Mobile-first, flexbox-based, geometric/structured style
---------------------------------------------------------*/

/* --- CSS 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, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F7FC;
  color: #122130;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
a {
  color: #184C89;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #59B798;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
strong, b {
  font-weight: 700;
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184C89;
  font-weight: 800;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
p, .text-section p, .small-note {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2A3543;
}
.small-note {
  color: #707A8A;
  font-size: 0.93rem;
}

/* --- GEOMETRIC/STRUCTURED GLOBALS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* --- FLEXBOX SECTION SPACING RULES --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(24, 76, 137, 0.08);
  padding: 32px 24px;
  min-width: 265px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(24, 76, 137, 0.18);
  transform: translateY(-4px) scale(1.015);
  z-index: 2;
}
.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: #F4F7FC;
  border: 2.5px solid #59B798;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(89, 183, 152, .08);
  transition: border 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  border-color: #184C89;
  box-shadow: 0 6px 24px 0 rgba(24, 76, 137, 0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
}

/* --- HEADER (NAVIGATION) --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(24,76,137, 0.05);
  border-bottom: 4px solid #184C89;
  z-index: 20;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
  color: #122130;
  padding: 9px 18px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
}
.main-nav a.cta-primary {
  background: #184C89;
  color: #fff;
  border-radius: 8px 36px 8px 36px;
  box-shadow: 0 2px 10px rgba(24, 76, 137, 0.05);
  font-size: 1.08rem;
  padding: 11px 26px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #59B798;
  color: #184C89;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4F7FC;
  color: #184C89;
}
.main-nav img {
  height: 40px;
  margin-right: 8px;
}

.mobile-menu-toggle {
  background: #184C89;
  color: #fff;
  border: 0;
  font-size: 2rem;
  border-radius: 8px;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  z-index: 101;
  transition: background .2s, color .2s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(24, 76, 137, 0.11);
  outline: none;
  visibility: hidden;
}
.mobile-menu-toggle:focus {
  box-shadow: 0 2px 14px rgba(24, 76, 137, 0.18);
  background: #59B798;
  color: #184C89;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #184C89;
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 18px 0 0 0;
  transition: transform 0.3s cubic-bezier(.59,.12,.13,.95);
  transform: translateX(100%);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 40px 0 rgba(24, 76, 137, 0.11);
}
.mobile-menu-close {
  background: #59B798;
  color: #184C89;
  font-size: 2.1rem;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  margin: 0 30px 0 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 202;
  box-shadow: 0 1px 8px rgba(89, 183, 152, 0.16);
  transition: background .18s, color .18s;
}
.mobile-menu-close:focus {
  background: #F4F7FC;
  color: #184C89;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 25px;
  align-items: flex-end;
  padding-right: 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  color: #fff;
  padding: 16px 0 16px 8px;
  border-radius: 0 18px 18px 0;
  min-width: 180px;
  text-align: right;
  transition: background .14s, color .14s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #59B798;
  color: #184C89;
}

/* Responsive Header Nav */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    visibility: visible;
  }
}
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
    flex-wrap: wrap;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #F4F7FC 80%, #59B798 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 56px 0 48px 0;
  border-bottom: 4px solid #59B798;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  color: #184C89;
  font-size: 2.7rem;
  font-weight: 800;
  text-shadow: 2px 2px 0 #fff, 3px 3px 8px #59B79833;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero p {
  font-size: 1.18rem;
  color: #184C89;
  max-width: 460px;
  margin: 0 auto 14px auto;
  line-height: 1.6;
}
.hero .cta-primary {
  margin-top: 6px;
}

/* --- CTA BUTTONS --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px 32px 8px 32px;
  padding: 12px 32px;
  font-size: 1.13rem;
  background: #184C89;
  color: #fff;
  box-shadow: 0 3px 18px rgba(24, 76, 137, 0.10);
  cursor: pointer;
  margin: 4px 0 0 0;
  text-transform: uppercase;
  outline: none;
  transition: background .18s, color .18s, transform .2s, box-shadow .2s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #59B798;
  color: #184C89;
  transform: translateY(-3px) scale(1.045) skewX(-2deg);
  box-shadow: 0 6px 32px 0 rgba(24, 76, 137, 0.12);
}
.cta-secondary {
  background: #fff;
  color: #184C89;
  border: 2px solid #184C89;
  padding: 11px 32px;
}
.cta-secondary:hover, .cta-secondary:focus {
  border-color: #59B798;
  color: #59B798;
  background: #184C89;
}
.button, button {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  background: #59B798;
  color: #fff;
  padding: 9px 20px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
  margin: 6px 10px 6px 0;
}
.button:hover, button:hover, .button:focus, button:focus {
  background: #184C89;
  color: #fff;
}

/* --- FEATURE & SERVICE LISTS --- */
.feature-list,
.trust-list,
.resource-list ul,
.tools-list ul,
.blog-overview,
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.feature-list li, .trust-list li, .resource-list ul li, .tools-list ul li, .blog-overview li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #2A3543;
  background: #fff;
  border-radius: 11px;
  padding: 16px 24px;
  border-left: 4px solid #59B798;
  box-shadow: 0 1px 10px rgba(24,76,137,0.04);
  transition: border-color 0.14s, box-shadow 0.18s;
}
.feature-list li:hover, .trust-list li:hover {
  border-color: #184C89;
  box-shadow: 0 3px 19px 0 rgba(24,76,137,0.05);
}
.feature-list img, .resource-list img {
  height: 32px;
  width: 32px;
  border-radius: 7px;
  background: #F4F7FC;
  box-shadow: 0 1.5px 10px rgba(24,76,137,0.08);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
}
.service-item {
  background: #fff;
  border-radius: 12px 36px 12px 36px;
  border: 2px solid #184C89;
  box-shadow: 0 2px 12px rgba(24,76,137,0.06);
  padding: 28px 20px 32px 20px;
  min-width: 265px;
  max-width: 320px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.17s, border-color 0.17s;
}
.service-item:hover {
  transform: translateY(-3px) scale(1.032) skewX(-2deg);
  border-color: #59B798;
  box-shadow: 0 9px 32px rgba(89,183,152,0.12);
  z-index: 3;
}
.service-item h3 {
  font-size: 1.23rem;
  color: #184C89;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.service-item p {
  color: #2A3543;
  font-size: 1.01rem;
  margin-bottom: 10px;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #59B798;
  font-size: 1.09rem;
  font-weight: 700;
  margin-bottom: 11px;
  letter-spacing: 0.01em;
}
.service-item a {
  color: #184C89;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  margin-top: 11px;
  transition: color 0.12s;
}
.service-item a:hover, .service-item a:focus {
  color: #59B798;
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  flex: 1 1 250px;
  min-width: 260px;
  max-width: 350px;
  background: #F4F7FC;
  color: #122130;
  border: 2.5px solid #59B798;
  border-radius: 16px;
  padding: 20px 18px 19px 22px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  box-shadow: 0 2px 8px rgba(24,76,137,0.07);
  transition: border-color 0.21s, box-shadow 0.17s;
}
.testimonial-card p {
  color: #122130;
  font-size: 1.11rem;
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card .testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184C89;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

/* --- TABLES (PRICING ETC.) --- */
.pricing-table {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px rgba(24,76,137,0.07);
  border: 2px solid #59B798;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  font-size: 1.02rem;
}
.pricing-table th {
  background: #184C89;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 14px 16px;
  letter-spacing: 0.03em;
}
.pricing-table td {
  background: #fff;
  border-top: 1px solid #D0D7E9;
  color: #2A3543;
  font-family: 'Open Sans', Arial, sans-serif;
}
.pricing-table tr:nth-child(even) td {
  background: #F4F7FC;
}

/* --- FAQ SECTION --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(24,76,137,0.05);
  padding: 19px 22px;
  font-size: 1rem;
  color: #2A3543;
  border-left: 5px solid #184C89;
  transition: border-color .13s;
  margin-bottom: 0;
}
.faq-list li strong {
  color: #184C89;
}

/* --- RESOURCES / BLOG / TOOLS --- */
.resource-list ul, .tools-list ul {
  gap: 18px !important;
}
.resource-list ul li {
  border-left: 4px solid #59B798;
}
.blog-overview li {
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #184C89;
  padding: 14px 24px;
  color: #184C89;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* --- METRICS --- */
.metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
}
.metrics div {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 26px;
  background: #59B798;
  color: #fff;
  border-radius: 14px 36px 14px 36px;
  border: 0;
  font-size: 1.09rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  box-shadow: 0 0.5px 6px rgba(24,76,137,0.12);
}

/* --- FOOTER --- */
footer {
  background: #122130;
  color: #fff;
  padding: 36px 0 18px 0;
  border-top: 6px solid #59B798;
  box-shadow: 0 -2px 10px rgba(24,76,137,0.10);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #59B798;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background .1s, color .1s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #184C89;
}
.footer-info {
  text-align: center;
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.89;
}

/* --- CONTACT PAGE STYLES --- */
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: 11px;
  padding: 18px 22px;
  box-shadow: 0 1px 8px rgba(89, 183, 152, 0.10);
  border: 1.5px solid #59B798;
  margin: 14px 0 0 0;
  font-size: 1rem;
  color: #184C89;
}
.contact-block a {
  color: #184C89;
  font-weight: 700;
}
.contact-block a:hover, .contact-block a:focus {
  color: #59B798;
}

/* --- COOKIE BANNER & COOKIE MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #184C89;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 3999;
  padding: 24px 12px 20px 12px;
  gap: 20px;
  box-shadow: 0 0 26px 0 rgba(24,76,137,0.13);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  min-height: 1px;
  width: 100vw;
  animation: appearCookie 0.4s cubic-bezier(.5,1.2,.4,1.05) both;
}
@keyframes appearCookie {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  margin-left: 22px;
  flex-shrink: 0;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px 26px 8px 26px;
  padding: 10px 22px;
  margin: 0;
  font-size: 1rem;
  border: none;
  transition: background .17s,color .14s;
  outline: none;
  background: #59B798;
  color: #fff;
  cursor: pointer;
}
.cookie-banner button.reject {
  background: #fff;
  color: #184C89;
  border: 2px solid #59B798;
}
.cookie-banner button.settings {
  background: #184C89;
  color: #fff;
  border: 2px solid #59B798;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #59B798;
  color: #fff;
  border-color: #184C89;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #184C89;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,76,137, 0.44);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4000;
  animation: appearModal 0.32s cubic-bezier(.38,1.1,.35,1.01) both;
}
@keyframes appearModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #fff;
  color: #122130;
  border-radius: 18px;
  padding: 34px 30px 32px 30px;
  min-width: 330px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 6px 32px 0 rgba(24, 76, 137, 0.18);
  animation: modalScale .31s cubic-bezier(.45,1.2,.4,1.06) both;
  position: relative;
}
@keyframes modalScale {
  0% { transform: scale(0.81); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #184C89;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #59B798;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  border-radius: 3px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  align-items: center;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 7px;
  right: 19px;
  background: none;
  border: 0;
  color: #184C89;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #59B798;
}

/* --- MISCELLANEOUS: GENERAL FLEX/GEOMETRIC --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.trust-list, .blog-overview, .resource-list ul, .tools-list ul {
  margin-bottom: 14px;
}

/* --- MEDIA QUERIES & RESPONSIVE LAYOUT --- */
@media (max-width: 1200px) {
  .container { padding: 0 14px; }
}
@media (max-width: 991px) {
  .main-nav { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .service-cards, .testimonial-list, .metrics, .content-grid {
    flex-direction: column !important;
    align-items: stretch;
    gap: 20px !important;
  }
  .service-item, .testimonial-card {
    min-width: 85%;
    max-width: 98%;
  }
  .card { min-width: initial; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  .container { padding: 0 6px; }
  .content-wrapper { padding: 0 1px; }
  .card, .service-item, .testimonial-card, .feature-list li, .faq-list li {
    padding: 15px 10px;
    font-size: 0.98rem;
  }
  .hero { padding: 34px 0 28px 0; }
  .metrics { gap: 16px; }
  .metrics div { padding: 10px 13px; font-size: 0.91rem; }
  .section { padding: 20px 7px; margin-bottom: 36px; }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .footer-nav, .metrics {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .section { padding: 14px 3px; }
  .card, .testimonial-card, .service-item {
    padding: 9px 6px;
    font-size: 0.93rem;
  }
  .footer-nav a { font-size: 0.99rem; }
  .metrics div { font-size: 0.89rem; }
  .cookie-modal .modal-content { padding: 18px 6px; min-width: 1px; max-width: 98vw; }
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.card, .service-item, .testimonial-card, .feature-list li, .faq-list li {
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.15s;
}
.card:hover, .service-item:hover, .feature-list li:hover, .faq-list li:hover {
  box-shadow: 0 5px 25px rgba(24,76,137,0.09);
  transform: translateY(-2.5px) scale(1.02);
  border-color: #59B798;
}
.testimonial-card:hover {
  border-color: #184C89;
  box-shadow: 0 6px 32px 0 rgba(89,183,152,0.14);
}
.cta-primary, .cta-secondary {
  transition: background .18s, color .18s, box-shadow .18s, transform .13s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}

/* --- UTILITY CLASSES / SPACING ---*/
.m-0 { margin: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 32px !important; }
pb-1 { padding-bottom: 8px !important; }
pb-2 { padding-bottom: 16px !important; }
.pb-3 { padding-bottom: 32px !important; }

/* --- REMEDY COMMON OVERLAPS ON FLEX --- */
.card, .testimonial-card, .service-item, .feature-list li, .faq-list li, .blog-overview li {
  margin-bottom: 20px;
}

/* Ensure all interactive elements reflect geometric_structured style */
/* END */
