/* ============================================================================
   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,main,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 {
  background: #F3F7F4;
  min-height: 100vh;
  color: #255C37;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
*,*:before,*:after { box-sizing: inherit; }
img,svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: bold; color: #255C37; }
hr { border: none; border-top: 1.5px solid #E9ECEB; margin: 32px 0; }
::-webkit-input-placeholder { color: #999; opacity:1; }
::-moz-placeholder { color: #999; opacity:1; }
:-ms-input-placeholder { color: #999; opacity:1; }
::placeholder { color: #999; opacity:1; }

/* ============================================================================
   BRAND COLOR SCHEME
============================================================================ */
:root {
  --primary: #255C37;
  --secondary: #F3F7F4;
  --accent: #FDBB2D;
  --gray: #E9ECEB;
  --gray-dark: #486B58;
  --black: #182724;
  --white: #fff;
}

/* ============================================================================
   TYPOGRAPHY HIERARCHY
============================================================================ */
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  letter-spacing: 0;
  margin-bottom: 12px;
  line-height: 1.22;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p,li {
  font-size: 1rem;
  font-weight: 400;
  color: #255C37;
}
strong,b {
  font-weight: 700;
}
.text-section ul, .text-section ol, ul.feature-grid, .features ul, .next-steps ul, .faq-accordion, .footer-menu, .main-nav, .mobile-nav {
  padding-left: 0 !important;
  margin-bottom: 0;
}

/* Angular Display Font for Headings */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: none;
  font-style: normal;
  letter-spacing: 0.01em;
}
h1,h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}
p,li,span,div,body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* ============================================================================
   CONTAINER, LAYOUTS & SPACING
============================================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section, .hero, .features, .services, .faq, .cta, .about-preview, .services-overview, .testimonials, .about-company, .contact-info, .legal, .confirmation, .case-study {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(37,92,55,0.06);
}
.section:last-child, .hero:last-child, .cta:last-child, .features:last-child, .footer { margin-bottom: 0; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(37,92,55,0.05);
  flex: 1 1 340px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(253,187,45,0.13);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.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;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(37,92,55,0.09);
  border-left: 6px solid var(--primary);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card p {
  color: #1B2B20;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #486B58;
}
.testimonial-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 18px rgba(253,187,45,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid,
.features ul:not(.feature-grid),
.services-overview ul,
.services ul,
.faq-teaser ul,
.next-steps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid > li,
.features ul > li,
.services-overview ul > li,
.services ul > li {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 1px 8px rgba(37,92,55,0.04);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid #e9eceb;
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.18s;
  position: relative;
}
.feature-grid > li:hover, .features ul > li:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(253,187,45,0.17);
  transform: translateY(-2px) scale(1.01) skew(-1deg);
}
.feature-grid > li img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
/* Ensure at least 20px between all content cards/sections */
.section + .section, .hero + .section, .features + .section, .services + .section, .about-preview + .section,
.card + .card, .case-study + .case-study, .testimonial-card + .testimonial-card {
  margin-top: 24px;
}

.contact-short address, .contact-short p { font-size: 1rem; color: #486B58; }

/* ============================================================================
   HEADER & MAIN NAVIGATION
============================================================================ */
header {
  background: var(--white);
  border-bottom: 3px solid #F3F7F4;
  box-shadow: 0 2px 12px rgba(37,92,55,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  height: 72px;
}
header a img {
  height: 38px;
  margin-right: 22px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background 0.17s, color 0.16s;
  color: var(--primary);
}
.main-nav a:hover, .footer-menu a:hover, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--black);
}
/* Active Nav (optional: add .active in HTML) */
.main-nav a.active, .footer-menu a.active, .mobile-nav a.active {
  color: var(--white);
  background: var(--primary);
}

/***** Header Button *****/
.btn-primary {
  background: var(--accent);
  color: var(--black);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 14px;
  padding: 11px 26px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(37,92,55,0.1);
  transition: background 0.14s, color 0.14s, transform 0.13s, box-shadow 0.13s;
  display: inline-block;
  margin-left: 12px;
  outline: none;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: #ffe393;
  color: var(--primary);
  transform: scale(1.04) skew(-2deg);
  box-shadow: 0 2px 14px rgba(253,187,45,0.14);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 1px 7px rgba(37,92,55,0.07);
  margin-right: 12px;
  transition: background 0.14s, color 0.13s, transform 0.14s;
  display: inline-block;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background: var(--accent);
  color: var(--black);
  transform: scale(1.04) skew(1deg);
  box-shadow: 0 2px 10px rgba(37,92,55,0.1);
}

/* ============================================================================
   MOBILE BURGER MENU
============================================================================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1002;
  margin-left: 16px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--white);
  box-shadow: 8px 0 38px rgba(37,92,55,0.13);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.57,0.01,0.34,0.99);
  display: flex;
  flex-direction: column;
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 1210;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 84px 28px 20px 28px;
  gap: 22px;
  width: 100%;
  flex: 1;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  border-radius: 12px;
  padding: 14px 18px;
  background: none;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:active {
  background: var(--accent);
  color: var(--black);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .btn-primary {
    padding: 10px 18px;
    font-size: 1rem;
    margin-left: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: space-between;
    padding: 0 14px;
    min-height: 60px;
  }
}
@media (max-width: 480px) {
  .mobile-nav a { font-size: 1rem; padding: 12px 10px; }
  .mobile-menu-close { top: 18px; right: 14px; }
}

/* ============================================================================
   HERO SECTION
============================================================================ */
.hero {
  background: linear-gradient(115deg, #F3F7F4 70%, #FDBB2D 160%);
  border-radius: 24px;
  box-shadow: 0 6px 28px rgba(37,92,55,0.07);
  margin-bottom: 60px;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.35rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.hero p {
  color: #1B2B20;
  font-size: 1.11rem;
  margin-bottom: 22px;
}
.hero .btn-primary {
  margin: 0;
  font-size: 1.15rem;
}

/* ============================================================================
   CTA SECTION
============================================================================ */
.cta {
  background: var(--primary);
  color: var(--white);
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(37,92,55,0.07);
}
.cta h2 {
  color: var(--white);
  text-shadow: 0 1px 7px rgba(37,92,55,0.13);
}
.cta .btn-primary {
  background: var(--accent);
  color: var(--black);
  margin: 0;
  transition: background 0.14s, color 0.13s;
}
.cta .btn-primary:hover {
  background: #ffe393;
  color: var(--primary);
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  background: var(--white);
  border-top: 3px solid #E9ECEB;
  box-shadow: 0 -2px 18px rgba(37,92,55,0.11);
  margin-top: 60px;
}
footer .container {
  padding: 30px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer a img {
  height: 36px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #255C37;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 7px 10px;
  transition: background 0.15s, color 0.13s;
}
footer .text-section.contact-short {
  color: #486B58;
  font-size: 1rem;
}
footer address {
  font-style: normal;
  margin-bottom: 3px;
}
footer p, footer address { color: #486B58; }

/* ============================================================================
   RESPONSIVE DESIGN -- MOBILE FIRST
============================================================================ */
@media (max-width: 900px) {
  .container { max-width: 97vw; }
  .hero, .section, .cta, .features, .services, .about-preview,
  .services-overview, .testimonials, .about-company, .contact-info, .legal, .confirmation {
    padding: 32px 8px;
  }
  .content-grid, .card-container { gap: 14px; }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .content-wrapper { gap: 12px; }
  .section, .hero, .cta, .features, .services, .about-preview, .services-overview, .testimonials, .about-company, .contact-info, .legal, .confirmation {
    margin-bottom: 40px;
    padding: 26px 4px;
    border-radius: 13px;
  }
  .feature-grid, .features ul:not(.feature-grid), .services-overview ul, .services ul, .faq-teaser ul, .next-steps ul {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid > li, .features ul > li, .services-overview ul > li, .services ul > li {
    min-width: 0;
    width: 100%;
    padding: 22px 11px;
  }
  .card-container { flex-direction: column; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  footer .content-wrapper { flex-direction: column; gap: 18px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; margin-bottom: 11px; }
  h3 { font-size: 1rem; }
}

/* ============================================================================
   SPECIAL GEOMETRIC/STRUCTURED ELEMENTS
============================================================================ */
/* Subtle geometric decorations: triangle/rectangle shapes */
.section:before,
.hero:after,
.cta:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.section:before {
  width: 60px;
  height: 60px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.13;
  position: absolute;
  top: 10px;
  left: 20px;
}
.hero:after {
  width: 90px;
  height: 36px;
  background: var(--accent);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.13;
  position: absolute;
  bottom: 14px;
  right: 28px;
}
.cta:before {
  width: 43px;
  height: 43px;
  background: var(--primary);
  clip-path: polygon(100% 0, 0 100%, 0 0);
  opacity: 0.08;
  left: 18px;
  bottom: 8px;
}
@media (max-width:600px){
  .section:before,.hero:after,.cta:before{display:none;}
}

/* ============================================================================
   CARDS & CASE STUDIES
============================================================================ */
.case-study {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(37,92,55,0.09);
  padding: 32px 24px 24px 24px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.case-study h3 {
  color: var(--primary);
  margin-bottom: 9px;
}
.case-study ul {
  color: var(--black);
  margin-bottom: 13px;
}

/* ============================================================================
   FAQ ACCORDION
============================================================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 6px rgba(37,92,55,0.07);
  padding: 22px;
  cursor: pointer;
  transition: box-shadow 0.19s;
  border-left: 5px solid var(--primary);
}
.faq-item h3 {
  font-size: 1.11rem;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: 700;
}
.faq-item.active {
  border-left: 5px solid var(--accent);
  box-shadow: 0 4px 14px rgba(253,187,45,0.14);
}
.faq-item > div {
  font-size: 1rem;
  color: #1B2B20;
  padding-bottom: 6px;
  max-height: 512px;
  transition: max-height 0.26s cubic-bezier(0.77,0,0.18,1);
}

/* ============================================================================
   COOKIE CONSENT BANNER & MODAL
============================================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: #fff; /* high contrast required */
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(37,92,55,0.14);
  border: 2px solid #E9ECEB;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px;
  z-index: 1400;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.cookie-consent-banner p { color: #182724; max-width: 500px; margin-bottom: 0; }
.cookie-consent-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  padding: 9px 20px;
  transition: background 0.13s, color 0.13s, box-shadow 0.16s;
  margin-right: 0;
  box-shadow: 0 1px 7px rgba(37,92,55,0.08);
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.accept:hover {
  background: var(--accent);
  color: var(--black);
}
.cookie-btn.reject {
  background: #EB5940;
  color: var(--white);
}
.cookie-btn.reject:hover {
  background: #feac94;
  color: #1B2B20;
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--black);
}
.cookie-btn.settings:hover {
  background: #ffe393;
  color: var(--primary);
}
@media (max-width:600px){
  .cookie-consent-banner {
    left: 1vw;
    right: 1vw;
    bottom: 8px;
    padding: 15px 7px;
    flex-direction: column;
    gap: 13px;
    font-size: 0.98rem;
  }
  .cookie-consent-actions {
    justify-content: flex-start;
    gap: 8px;
  }
}

/* ========= COOKIE MODAL =========== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1450;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,39,36,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.26s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  max-width: 390px;
  width: 95vw;
  box-shadow: 0 6px 36px rgba(37,92,55,0.20);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1460;
  animation: cookieModalPop 0.52s cubic-bezier(.57,1.73,.41,.78);
}
@keyframes cookieModalPop {
  0% { opacity:0; transform: scale(0.9) translateY(90px); }
  70%{ opacity:0.35; }
  100%{ opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--primary);
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E9ECEB;
}
.cookie-category:last-child { border-bottom: 0; }
.cookie-category .toggle {
  margin-left: 18px;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  background: var(--gray);
  border-radius: 16px;
  vertical-align: middle;
  transition: background 0.13s;
}
.toggle-switch input {
  opacity: 0;
  height: 0;
  width: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transition: 0.18s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
  left: 20px;
}
.toggle-switch input:disabled + .toggle-slider {
  background: #9ab9a8;
}
/* Category Label */
.cookie-category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #182724;
}

/* ============================================================================
   GENERAL UTILITY CLASSES
============================================================================ */
.hide { display: none !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.flex-row { display: flex; flex-direction: row !important; }
.flex-col { display: flex; flex-direction: column !important; }
.flex-center { align-items: center; justify-content: center; }
.shadow {
  box-shadow: 0 1px 6px rgba(37,92,55,0.07);
}
.rounded { border-radius: 15px; }
.bg-white { background: #fff; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-dark { color: #182724; }

/* ============================================================================
   MISCELLANEOUS ELEMENTS, STATES & INTERACTIONS
============================================================================ */
::-webkit-scrollbar {
  width: 8px;
  background: #f3f7f4;
}
::-webkit-scrollbar-thumb {
  background: #dbebdd;
  border-radius: 8px;
}

button:focus, a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus-visible {
  outline: 2px solid var(--primary);
}

input, textarea, select {
  border-radius: 7px;
  border: 1.5px solid #E9ECEB;
  padding: 9px 12px;
  font-size: 1rem;
  color: #182724;
  background: #fff;
  margin-bottom: 18px;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}

/* ============================================================================
   PRINT FRIENDLY
============================================================================ */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  .section, .card, .testimonial-card { box-shadow: none !important; background: #fff !important; }
}
