/* -----------------------------------------------------
  CSS RESET & BASE STYLES
----------------------------------------------------- */
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #181C23;
  background-color: #FCFAF7;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: #254231;
  text-decoration: underline;
  transition: color .2s;
}
a:hover, a:focus {
  color: #669966;
  text-decoration: none;
}
ul, ol {
  list-style: disc inside;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #2B3C26;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 12px;
  font-size: 1rem;
}

blockquote {
  font-style: italic;
  margin: 0 0 10px 0;
  color: #466040;
}
cite {
  display: block;
  color: #7A6B36;
  font-size: 0.95em;
  font-style: normal;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* -----------------------------------------------------
  COLOR VARIABLES & NATURE ORGANIC PALETTE
----------------------------------------------------- */
:root {
  --brand-primary: #181C23;
  --brand-secondary: #F5C741;
  --brand-accent: #FFFFFF;
  --earth-green: #254231;
  --earth-moss: #7CAF6B;
  --earth-brown: #96785B;
  --earth-light: #FCFAF7;
  --nature-shadow: 0 2px 16px 0 rgba(53,67,51,0.09);
  --nature-border: #D8E1CF;
  --organic-radius: 28px;
}

/* SANS FONTS, Montserrat for headlines, Open Sans for body. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

/* -----------------------------------------------------
  LAYOUT & CONTAINER STYLES
----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.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: var(--organic-radius);
  box-shadow: var(--nature-shadow);
  padding: 24px;
  border: 1px solid var(--nature-border);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(53,67,51,0.18);
  transform: translateY(-2px) scale(1.01);
}
.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;
  border-radius: var(--organic-radius);
  background: #F8F5EA;
  box-shadow: 0 2px 10px 0 rgba(48,64,39,0.08);
  border: 1px solid #DADAC4;
  margin-bottom: 24px;
  position: relative;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 180px;
  background: #FFF;
  border-radius: 22px;
  border: 1px solid #E3EAE0;
  box-shadow: 0 2px 10px 0 rgba(68,88,55,0.10);
  padding: 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .18s, border-color .18s, transform .12s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 22px 0 rgba(68,88,55,0.20);
  border-color: var(--earth-moss);
  transform: scale(1.025);
}
.feature-grid img {
  width: 34px;
  height: 34px;
}
.feature-grid h3 {
  font-size: 1.12rem;
  color: #254231;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-list li {
  flex: 1 1 220px;
  min-width: 180px;
  background: #FDFAF4;
  border-radius: 18px;
  border: 1px solid #E4E2D2;
  padding: 22px 14px 18px;
  box-shadow: 0 1px 5px 0 rgba(58,75,48,0.08);
  margin-bottom: 0;
  transition: box-shadow .16s, border-color .18s;
}
.service-list li:hover {
  box-shadow: 0 3px 12px 0 rgba(78,95,55,0.11);
  border-color: var(--earth-brown);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

/* --- Footer Layout --- */
footer {
  background: #F6F7F2;
  border-top: 2px solid #E6EDD8;
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
footer img {
  height: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 24px;
}
footer nav a {
  color: #3B4F34;
  text-decoration: none;
  font-size: 0.99rem;
  font-weight: 600;
  transition: color .2s;
}
footer nav a:hover {
  color: var(--earth-moss);
}
footer .text-section p {
  font-size: 0.96rem;
  color: #4E4B39;
  margin-bottom: 6px;
}

/* -----------------------------------------------------
  HEADER, NAVIGATION & MOBILE MENU
----------------------------------------------------- */
header {
  background: #F6F9F4;
  border-bottom: 1.5px solid #EBE7D2;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 66px;
  gap: 14px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #294525;
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 10px 7px 7px;
  border-radius: 7px;
  transition: background .15s, color .16s;
}
header nav a:hover, header nav a:focus {
  background: #E5F5E4;
  color: #3B7751;
}
.cta.primary {
  background: linear-gradient(90deg,#7CAF6B,#F5C741 93%);
  color: #181C23;
  border-radius: 22px;
  padding: 12px 30px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 1.5px 7px 0 rgba(124,175,107,0.13);
  letter-spacing: 0.03em;
  transition: background .16s, color .13s, box-shadow .14s, transform .14s;
  cursor: pointer;
  margin-left: 12px;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg,#89c982,#FAE36A);
  color: #254231;
  box-shadow: 0 4px 16px 0 rgba(124,175,107,0.22);
  transform: translateY(-2px) scale(1.025);
}
.cta.secondary {
  background: #7CAF6B;
  color: #fff;
  border-radius: 22px;
  padding: 12px 30px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 1.5px 7px 0 rgba(124,175,107,0.13);
  transition: background .15s, color .13s, box-shadow .16s, transform .13s;
  margin-left: 0;
  cursor: pointer;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #254231;
  color: #F5C741;
  box-shadow: 0 2px 10px 0 rgba(37,66,49,0.22);
  transform: scale(1.04);
}

button.cta, a.cta, .cta {
  outline: none;
  border: none;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  background: #EFF5F2;
  padding: 9px 14px;
  border-radius: 40px;
  font-size: 1.6rem;
  line-height: 1;
  color: #254231;
  border: 1px solid #D2E2CC;
  cursor: pointer;
  transition: background .16s, border-color .15s, box-shadow .13s;
  margin-left: 10px;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D3ECD2;
  border-color: #7CAF6B;
}
/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #F6F9F4;
  box-shadow: -3px 0 20px 0 rgba(37, 66, 49, 0.18);
  position: fixed;
  top: 0; left: 100%;
  width: 90vw;
  max-width: 360px;
  height: 100vh;
  z-index: 300;
  padding: 30px 24px 18px 26px;
  transition: transform .36s cubic-bezier(.85,.18,.37,.99), left .01s;
  transform: translateX(0);
  pointer-events: none;
}
.mobile-menu.active {
  left: auto;
  right: 0;
  transform: translateX(-100%);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 21px;
  background: #FFF7E5;
  color: #A58F31;
  border-radius: 40px;
  border: 1px solid #F5C741;
  font-size: 1.3rem;
  padding: 6px 13px;
  cursor: pointer;
  z-index: 305;
  transition: background .15s, color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F5C741;
  color: #254231;
}
.mobile-nav {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 16px 6px 12px 3px;
  border-radius: 9px;
  color: #254231;
  text-decoration: none;
  transition: background .16s, color .16s;
  background: #F8FFF6;
  box-shadow: 0 1px 3px 0 rgba(33,96,54,0.09);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #D3ECD2;
  color: #7CAF6B;
}
.header .cta.primary {
  margin-left: auto;
}


/* -----------------------------------------------------
  HERO SECTIONS & ORGANIC SHAPES
----------------------------------------------------- */
.hero {
  background: #E9F6EA;
  background-image: url('../assets/organic-bg.svg'), radial-gradient(ellipse 120% 80% at 40% 10%, #FDFFE4 0%, #E9F6EA 100%);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 46px 46px / 0 0 72px 56px;
  min-height: 310px;
  display: flex;
  align-items: center;
  margin-bottom: 52px;
  box-shadow: 0 1.5px 24px 0 rgba(124,175,107,0.09);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.12;
  color: #215132;
  letter-spacing: -0.025em;
}
.hero p {
  font-size: 1.17rem;
  color: #466040;
  margin-bottom: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    border-radius: 0 0 36px 36px / 0 0 50px 36px;
    margin-bottom: 35px;
    padding-bottom: 12px;
  }
  .hero h1 {
    font-size: 1.68rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------
  RESPONSIVE LAYOUTS & FLEXBOX
----------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
  .content-wrapper {
    max-width: 99vw;
    gap: 20px;
  }
  .feature-grid, .service-list {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .feature-grid li, .service-list li {
    min-width: 48vw;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }
}
@media (max-width: 768px) {
  /* Make all flex layouts column */
  .content-grid, .feature-grid, .service-list, .card-container, .content-wrapper, .text-image-section, .footer .container {
    flex-direction: column !important;
    align-items: stretch;
    gap: 20px !important;
  }
  .service-list li, .feature-grid li {
    min-width: 80vw;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .content-wrapper {
    padding: 0;
  }
  nav {
    gap: 8px;
  }
  footer .container {
    gap: 28px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 28px 4px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .hero h1 { font-size: 1.25rem; }
  .hero {
    min-height: 95px;
  }
}

/* -----------------------------------------------------
  INTERACTIVE STATES & MICRO-ANIMATIONS
----------------------------------------------------- */
.card, .card-container > * {
  transition: box-shadow .22s, transform .15s;
}
.card:active, .feature-grid li:active, .service-list li:active {
  transform: scale(0.98);
}
ul li a.cta, p a.cta, .text-section a.cta {
  margin-top: 8px;
  display: inline-block;
}

/* -----------------------------------------------------
  FORMATTING LISTS & ORGANIC BULLETS
----------------------------------------------------- */
ul, ol {
  padding-left: 21px;
  margin-bottom: 8px;
}
ul {
  list-style-type: circle;
}
.text-section ul, .text-section ol {
  margin-bottom: 4px;
}
.text-section ul li {
  position: relative;
  padding-left: 18px;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #B6D1A3;
  border-radius: 50%;
}
.text-section ol {
  list-style-type: decimal;
  padding-left: 18px;
}

/* -----------------------------------------------------
  MISCELLANEOUS SECTION SPACING
----------------------------------------------------- */
main section {
  margin-bottom: 60px;
  padding: 40px 0;
}
main section:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  main section {
    padding: 28px 0 18px;
    margin-bottom: 28px;
  }
}

/* -----------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 5555;
  background: #F5F2E0;
  box-shadow: 0 -2px 12px 0 rgba(47,80,53,0.12);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 18px 20px 14px;
  border-top: 2px solid #D2E2CC;
  flex-wrap: wrap;
  font-size: 1.02rem;
  animation: cookie-banner-slideUp .5s cubic-bezier(.6,1.45,.53,.77);
}
@keyframes cookie-banner-slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 250px;
  color: #283820;
  font-size: 0.98rem;
  margin-bottom: 2px;
  margin-right: 30px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 8px 20px;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 1px 3px 0 rgba(92,102,77,0.07);
  transition: background .14s, color .13s;
}
.cookie-banner .cookie-accept {
  background: #7CAF6B;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #254231;
  color: #F5C741;
}
.cookie-banner .cookie-reject {
  background: #FCFAF7;
  color: #7CAF6B;
  border: 1.5px solid #7CAF6B;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  border-color: #B6D1A3;
  color: #254231;
  background: #EEF9EA;
}
.cookie-banner .cookie-settings {
  background: #FFF7E5;
  color: #A58F31;
  border: 1.2px solid #F5C741;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #F5C741;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    font-size: 0.99rem;
    padding: 18px 6px 14px 6px;
  }
  .cookie-banner p {
    margin-right: 0;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* Cookie preference modal */
.cookie-modal {
  display: none;
  align-items: flex-start;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 8000;
  background: rgba(150,170,125,.22);
  animation: cookie-modal-in .35s cubic-bezier(.25,.9,.31,1.33);
}
.cookie-modal.active {
  display: flex;
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-box {
  background: #FDFAF2;
  border-radius: 28px;
  box-shadow: 0 10px 32px 0 rgba(37,67,31,0.19);
  padding: 34px 26px 20px 26px;
  margin-top: 5vw;
  max-width: 360px;
  width: 99vw;
  border: 2px solid #E3EAE0;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: modalBox-in .38s cubic-bezier(.46,1.28,.26,1.37);
}
@keyframes modalBox-in {
  from { transform: translateY(20px) scale(0.92); opacity: 0.2; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-box h3 {
  font-size: 1.23rem;
  color: #254231;
  margin-bottom: 4px;
}
.cookie-modal-box ul {
  list-style: none;
  padding: 0;
  gap: 7px;
}
.cookie-modal-box li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  font-size: 0.99rem;
  color: #2B3C26;
}
.cookie-switch {
  appearance: none;
  width: 34px;
  height: 18px;
  border-radius: 10px;
  background: #D5E6D5;
  position: relative;
  outline: none;
  transition: background .14s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #7CAF6B;
}
.cookie-switch::after {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .16s;
}
.cookie-switch:checked::after {
  left: 16px;
}
.cookie-modal-box .close-modal {
  position: absolute;
  right: 18px; top: 11px;
  background: #FFF7E5;
  color: #A58F31;
  border-radius: 20px;
  font-size: 1.2rem;
  padding: 4px 11px 2px;
  border: 1.2px solid #F5C741;
  cursor: pointer;
  transition: background .14s, color .11s;
}
.cookie-modal-box .close-modal:hover {
  background: #F5C741;
  color: #254231;
}
.cookie-modal-box .cookie-save-btn {
  background: #254231;
  color: #F5C741;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 22px;
  border: none;
  margin-top: 12px;
  box-shadow: 0 2px 7px 0 rgba(37,67,31,0.09);
  transition: background .13s, color .12s;
  cursor: pointer;
}
.cookie-modal-box .cookie-save-btn:hover, 
.cookie-modal-box .cookie-save-btn:focus {
  background: #7CAF6B;
  color: #fff;
}

/* -----------------------------------------------------
  ORGANIC, EARTHY STYLES & SPACING
----------------------------------------------------- */
section, .section {
  background: #fff;
  border-radius: 38px;
  box-shadow: 0 2px 18px 0 rgba(51, 62, 41, 0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section, .section { border-radius: 25px; padding: 24px 7px; margin-bottom: 26px; }
}

/* Card background for organic/nature look */
.card, .feature-grid li, .service-list li {
  background: linear-gradient(120deg,#F7FAF3 65%,#E4E7D5 100%);
  border-radius: 26px;
}

.testimonial-card {
  background: #FCFAF7;
  color: #181C23;
  border-left: 4px solid #7CAF6B;
}

/* Text colors for readability (especially testimonials) */
.testimonial-card blockquote { color: #215132; }
.testimonial-card cite     { color: #968540; opacity: .90;  margin-top: 1px; }

/* Organic figures & icon visuals */
.text-section img, [alt*="Sym"] {
  margin-right: 6px;
  margin-bottom: -5px;
  width: 20px; height: 20px;
}

/* -----------------------------------------------------
  ACCESSIBILITY & FOCUS STATES
----------------------------------------------------- */
a:focus, button:focus, input:focus {
  outline: 2px solid #7CAF6B;
  outline-offset: 2px;
}

/* -----------------------------------------------------
  SCROLLBAR (light earth style for touch devices)
----------------------------------------------------- */
::-webkit-scrollbar {
  width: 12px;
  background: #F7FAF3;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #D9E8CC;
  border-radius: 13px;
}

/* -----------------------------------------------------
  OVERRIDES FOR SPECIFIC CLASS MATCHES
----------------------------------------------------- */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
}
.card {
  margin-bottom: 20px !important;
  position: relative !important;
}
.content-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  justify-content: space-between !important;
}
.text-image-section {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
}
.testimonial-card {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 20px !important;
}
.feature-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 15px !important;
}

/* -----------------------------------------------------
  PRINT & OTHERS
----------------------------------------------------- */
@media print {
  body, .container, .card, section, .section, main, .hero,.feature-grid,.service-list { background: #fff !important; color: #181C23 !important; box-shadow: none !important; }
  header,.mobile-menu,.cookie-banner,.cookie-modal,footer,nav { display: none !important; }
}
