/* --- 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%;
  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: #F5F7FB;
  color: #223249;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #223249;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5FB563;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #223249;
}
h1 {font-size: 2.5rem; letter-spacing: -1px;}
h2 {font-size: 2rem; letter-spacing: -0.5px;}
h3 {font-size: 1.25rem;}
h4 {font-size: 1.125rem;}
h5 {font-size: 1rem;}
h6 {font-size: 0.875rem;}
strong {font-weight: 700; color: #223249;}

@media (max-width: 600px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
  h3 {font-size: 1.125rem;}
}
p {
  margin-bottom: 20px;
  color: #223249;
  font-size: 1rem;
  line-height: 1.7;
}

/* --- BRAND CONTAINER --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --- HEADER --- */
header {
  background: #ffffff;
  border-bottom: 2px solid #22324910;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
header img {
  height: 40px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  letter-spacing: 0.05em;
  border-radius: 8px;
  position: relative;
  transition: background .18s, color .18s;
}
nav a:hover:not(.cta-btn), nav a:focus:not(.cta-btn) {
  color: #5FB563;
  background: #F5F7FB;
}
nav .cta-btn {
  background: #5FB563;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  box-shadow: 0 2px 12px 0 #5fb56325;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav .cta-btn:hover, nav .cta-btn:focus {
  background: #223249;
  color: #fff;
  box-shadow: 0 4px 18px 0 #22324930;
}
header .mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: #223249;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 45px; height: 45px;
  cursor: pointer;
  transition: background 0.15s;
}
header .mobile-menu-toggle:focus {
  background: #5FB563;
}
@media (max-width: 1020px) {
  nav {
    gap: 14px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 950px) {
  nav { display: none; }
  header .mobile-menu-toggle {
    display: flex;
  }
}

/* --- MOBILE MENU STYLES --- */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #223249ee;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.86,.01,.32,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 14px; right: 26px;
  cursor: pointer;
  z-index: 1001;
  transition: color .18s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #5FB563;
}
.mobile-nav {
  margin: 48px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 9px 22px 9px 4px;
  border-radius: 0 12px 12px 0;
  transition: background .2s, color .2s;
  min-width: 180px;
  letter-spacing: 0.09em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5FB563;
  color: #fff;
}

@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  background: #223249;
  color: #fff;
  padding: 60px 0;
  margin-bottom: 60px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 320px;
}
.hero .container,
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
  letter-spacing: -1.2px;
  font-weight: 700;
}
.hero p {
  color: #F5F7FB;
  font-size: 1.18rem;
}
.hero .cta-btn {
  margin-top: 16px;
  font-size: 1.25rem;
  background: #5FB563;
  color: #fff;
  border-radius: 12px;
  padding: 14px 38px;
  font-weight: 700;
  box-shadow: 0 2px 22px 0 #5fb56332;
  border: none;
  cursor: pointer;
  letter-spacing: 0.09em;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #223249;
  color: #fff;
  box-shadow: 0 4px 32px 0 #22324944;
}
@media (max-width: 600px) {
  .hero { padding: 36px 0; min-height: 200px; }
  .hero h1, .hero h2 { font-size: 1.6rem; }
}

/* --- SECTION & FLEX PATTERNS --- */
.section,
.features,
.about,
.team,
.trust,
.services,
.services-summary,
.comparison,
.testimonials,
.faq,
.cta-section,
.cta,
.contact-section,
.office-hours,
.legal,
.blog-list,
.newsletter,
.thank-you,
.process {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 #22324910;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F5F7FB;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 #22324908;
  padding: 24px 20px;
  transition: box-shadow 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px 0 #5fb56322;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F7FB;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #2232491A;
  margin-bottom: 20px;
  border-left: 6px solid #5FB563;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 26px 0 #5fb56336;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .section,
  .features,
  .about,
  .team,
  .trust,
  .services,
  .services-summary,
  .comparison,
  .testimonials,
  .faq,
  .cta-section,
  .cta,
  .contact-section,
  .office-hours,
  .legal,
  .blog-list,
  .newsletter,
  .thank-you,
  .process {
    padding: 30px 6px;
    margin-bottom: 42px;
  }
  .content-wrapper { max-width: 98%; }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features ul, .services ul, .services-summary ul, .trust ul {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- FEATURES/UL LISTS --- */
.features ul,
.services ul,
.services-summary ul,
.trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0 0 0;
  padding: 0;
}
.features ul li,
.services ul li,
.services-summary ul li,
.trust ul li {
  flex: 1 1 320px;
  background: #F5F7FB;
  border-radius: 14px;
  box-shadow: 0 1px 8px #2232490A;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 18px 18px;
  border-left: 4px solid #5FB563;
  margin-bottom: 0;
}
.features ul li img, .services ul li img, .services-summary ul li img, .trust ul li img {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px #22324910;
}
@media (max-width: 700px) {
  .features ul li, .services ul li, .services-summary ul li, .trust ul li {
    flex: 1 1 100%;
    font-size: 0.98rem;
    padding: 13px 12px;
  }
  .features ul, .services ul, .services-summary ul, .trust ul {
    gap: 13px;
  }
}

/* --- TABLE STYLES (Comparison) --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0 30px 0;
  background: #fff;
}
thead th {
  background: #223249;
  color: #fff;
  padding: 12px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
tbody td {
  border-top: 1px solid #2232491E;
  padding: 9px 8px;
  color: #223249;
  font-size: 1rem;
}
tbody tr:nth-child(even) td {
  background: #F5F7FB;
}

/* --- CTA SECTION --- */
.cta-section, .cta {
  background: #5FB563;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 22px 0 #22324916;
  text-align: center;
}
.cta-section h2, .cta h2, .cta-section p, .cta p {
  color: #fff;
}
.cta-section .cta-btn, .cta .cta-btn {
  margin-top: 16px;
  background: #223249;
  color: #fff;
  font-size: 1.18rem;
  padding: 12px 34px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 22px 0 #22324920;
  display: inline-block;
}
.cta-section .cta-btn:hover, .cta .cta-btn:hover,
.cta-section .cta-btn:focus, .cta .cta-btn:focus {
  background: #fff;
  color: #223249;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
}
.testimonials h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.testimonial-card {
  font-size: 1.05rem;
  background: #F5F7FB;
  color: #223249;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 #22324914;
  margin-bottom: 20px;
  border-left: 6px solid #5FB563;
}
.testimonial-card strong { color: #223249; font-weight: 700; }
.testimonial-card h3 {
  color: #223249;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

/* --- BLOG LIST & PREVIEWS --- */
.blog-list .blog-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.blog-list .blog-previews article {
  background: #F5F7FB;
  border-radius: 12px;
  flex: 1 1 290px;
  min-width: 260px; max-width: 380px;
  box-shadow: 0 1px 12px 0 #2232490A;
  padding: 20px 18px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s;
}
.blog-list .blog-previews article:hover, .blog-list .blog-previews article:focus-within {
  box-shadow: 0 4px 22px 0 #2232491A;
}
.blog-list .blog-previews h3 {
  font-size: 1.12rem;
  color: #223249;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -0.3px;
}
.blog-list .blog-previews a {
  color: #5FB563;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color .17s;
}
.blog-list .blog-previews a:hover, .blog-list .blog-previews a:focus {
  color: #223249;
}
.categories-filter {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.categories-filter a {
  color: #5FB563;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.categories-filter a:hover, .categories-filter a:focus { color: #223249; text-decoration: underline; }

/* --- NEWSLETTER SECTION --- */
.newsletter {
  background: #223249;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 #2232491B;
}
.newsletter h2, .newsletter p, .newsletter li { color: #fff; }
.newsletter ul { margin-top: 20px; }
.newsletter ul li { margin-bottom: 8px; }

/* --- CONTACT FOOTER --- */
footer {
  background: #223249;
  color: #fff;
  margin-top: 36px;
  padding-top: 30px;
  padding-bottom: 14px;
}
footer .container { padding: 0 18px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  justify-content: space-between;
  border-top: 1px solid #22324935;
  padding-top: 24px;
  margin-bottom: 0;
}
.contact-footer {
  flex: 2 1 280px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #fff;
}
.contact-footer img { width: 22px; margin-right: 8px; vertical-align: middle; }
.footer-nav {
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-nav a {
  color: #fff;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #5FB563;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding-top: 16px;
  }
  .footer-nav { align-items: flex-start; }
}

/* --- LEGAL SECTIONS --- */
.legal h1 { font-size: 2rem; font-family: 'Montserrat', Arial, sans-serif; margin-bottom: 20px; }
.legal h2 { font-size: 1.2rem; font-family: 'Montserrat', Arial, sans-serif; margin-top: 24px; margin-bottom: 10px; color: #223249; }
.legal ul { margin-left: 22px; margin-top: 12px; }
.legal ul li { list-style: disc; margin-bottom: 8px; color: #223249; }
.legal p { color: #223249; }

/* --- THANK YOU SECTION --- */
.thank-you, .thank-you .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
}
.thank-you h1 { color: #5FB563; font-size: 2rem; margin-bottom: 16px; }
.thank-you .cta-btn {
  background: #223249;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 11px;
  font-size: 1.1rem;
  margin-top: 20px;
  border: none;
  box-shadow: 0 2px 12px 0 #22324914;
  transition: background 0.17s, color 0.17s;
}
.thank-you .cta-btn:hover, .thank-you .cta-btn:focus {
  background: #5FB563;
  color: #fff;
}

/* --- FAQ --- */
.faq .text-section h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  margin: 18px 0 7px 0;
}
.faq .text-section p { margin-bottom: 17px; }

/* --- PROCESS LIST --- */
.process ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  padding-left: 20px;
}
.process ol li {
  font-size: 1rem;
  position: relative;
  padding-left: 24px;
  color: #223249;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.process ol li::before {
  content: "";
  width: 15px; height: 15px;
  background: #5FB563;
  border-radius: 3px;
  position: absolute;
  left: 0; top: 3px;
  display: inline-block;
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 600px) {
  .card-container, .content-grid, .blog-list .blog-previews {
    flex-direction: column;
    gap: 15px;
  }
  .card, .testimonial-card, .features ul li, .services ul li, .services-summary ul li, .trust ul li {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    max-width: 98vw;
  }
}

/* --- BUTTONS --- */
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: box-shadow .18s, background .18s, color .18s;
}
button:active, .cta-btn:active { transform: translateY(1px); }
button:focus, .cta-btn:focus { outline: 2px solid #5FB563; outline-offset: 2px; }

/* --- COOKIE BANNER / MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #223249;
  color: #fff;
  z-index: 30000;
  width: 100vw;
  box-shadow: 0 -2px 20px #22324918;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  border-radius: 18px 18px 0 0;
  animation: cookieAppear 0.5s cubic-bezier(.19,1,.22,1);
}
@keyframes cookieAppear {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  background: #5FB563;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  padding: 9px 20px;
  border: none;
  margin: 0 3px;
  font-weight: 700;
  transition: background 0.20s, color 0.20s;
}
.cookie-banner button:hover, .cookie-banner .cookie-btn:hover {
  background: #fff;
  color: #223249;
}
.cookie-banner .cookie-btn.settings {
  background: #ffffff22;
  color: #fff;
  border: 1px solid #fff1;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #223249;
  color: #5FB563;
  border: 1px solid #5FB56344;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #223249BE;
  z-index: 30300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieAppear .42s cubic-bezier(.19,1,.22,1) both;
}
.cookie-modal {
  background: #fff;
  color: #223249;
  border-radius: 14px;
  box-shadow: 0 4px 40px 0 #22324944;
  max-width: 97vw;
  min-width: 320px;
  width: 460px;
  padding: 35px 30px 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalScaleIn 0.29s cubic-bezier(.42,1.34,.45,1) both;
}
@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.cookie-modal-category {
  margin-bottom: 7px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  margin-left: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #5FB563;
  width: 16px; height: 16px;
}
.cookie-modal .category-essential {
  font-weight: 600;
  color: #5FB563;
  margin-left: 0;
}
.cookie-modal .cookie-modal-actions {
  display: flex; justify-content: flex-end; gap: 10px;
}
.cookie-modal .cookie-btn {
  background: #5FB563;
  color: #fff;
  border-radius: 10px;
  padding: 9px 20px;
  font-weight: 700;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #223249;
  color: #fff;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 13px; right: 22px;
  background: none;
  color: #223249;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #5FB563;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 6vw 24px 6vw;
    width: 96vw;
    min-width: 0;
  }
}

/* --- GEO STRUCTURED DECORATIVE SHAPES --- */
.section::before, .features::before,
.about-short::before, .about::before,
.cta-section::before, .cta::before, .newsletter::before {
  content: "";
  display: none;
}
@media (min-width: 990px) {
  .section::before, .features::before,
  .about-short::before, .about::before,
  .cta-section::before, .cta::before, .newsletter::before {
    display: block;
    position: absolute;
    top: 6%; right: -75px;
    width: 120px; height: 120px;
    background: #5FB56311;
    border-radius: 32% 68% 81% 19%/36% 37% 63% 64%;
    z-index: 0;
    pointer-events: none;
  }
  .section::before { background: #5FB56317; right: -90px; top: 4%; }
}

/* --- GEOMETRIC ANGULAR FONT STYLE --- */
body, p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, .cta-btn, nav a, .mobile-nav a, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- GEOMETRIC/STRUCTURED BUTTONS --- */
.cta-btn, button, .cookie-btn {
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #22324910;
  letter-spacing: 0.06em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- INPUT & FORM STYLES --- */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  border: 1.5px solid #22324922;
  padding: 9px 14px;
  box-shadow: 0 2px 10px 0 #2232490d;
  font-size: 1rem;
  transition: border-color 0.13s, box-shadow 0.13s;
}
input:focus, select:focus, textarea:focus {
  border-color: #5FB563;
  box-shadow: 0 2px 14px 0 #5fb56324;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px; background: #F5F7FB;
}
::-webkit-scrollbar-thumb {
  background: #22324933;
  border-radius: 7px;
}

/* --- MICRO-INTERACTIONS & HOVERs --- */
.card, .testimonial-card, .blog-list .blog-previews article {
  transition: box-shadow .25s, transform .13s;
}
.card:hover, .testimonial-card:hover, .blog-list .blog-previews article:hover {
  box-shadow: 0 8px 24px 0 #5fb56325, 0 1.5px 12px 0 #22324909;
  transform: translateY(-2px) scale(1.008);
}

/* --- SPACING & ALIGNMENT per requirements --- */
.section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  margin-bottom: 20px;
  gap: 20px;
}

/* Make sure no content overlap */
.section > *, .features > *, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child, .features > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* --- ACCESSIBILITY HIGHLIGHT --- */
:focus-visible {
  outline: 2px solid #5FB563;
  outline-offset: 2px;
}

/* --- PRINT STYLES (optional) --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  section, .section, main { box-shadow: none !important; background: #fff !important; }
}
