/* --- 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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FEF6E7;
  color: #333;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
  border-radius: 16px;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* --- COLOR VARIABLES (for fallback: use original color inline as well) --- */
:root {
  --color-primary: #24696A;
  --color-secondary: #FEF6E7;
  --color-secondary-dark: #e0ccae;
  --color-accent: #BB5F00;
  --color-accent-light: #F98F21;
  --color-green: #4F9252;
  --color-green-light: #A9C987;
  --color-bg: #FEF6E7;
  --color-light: #FFFFFF;
  --color-dark: #22281C;
  --radius-card: 18px;
  --radius-btn: 22px;
  --radius-xl: 36px;
  --shadow-soft: 0 8px 32px rgba(36,105,106,0.10);
}

/* --- TYPOGRAPHY --- */
h1, .page-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1.18;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.22;
  color: var(--color-green);
  margin-bottom: 24px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-dark);
}
p, li, blockquote, table, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #30362C;
}
blockquote {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.10rem;
  margin: 0 0 10px 0;
  padding-left: 18px;
  border-left: 4px solid var(--color-accent-light);
}
strong { font-weight: 700; }

/* --- GENERAL CONTAINER & SECTION STYLES --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 0;
}
@media (max-width: 768px) {
  .section,
  main > section {
    padding: 26px 10px 34px 10px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- HERO SECTION --- */
.hero {
  background: var(--color-green-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  padding: 34px 0 28px 0;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
}
.hero p {
  font-size: 1.18rem;
  color: #49543e;
  margin-bottom: 18px;
}
.hero .btn-primary {
  font-size: 1.15rem;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 18px;
    margin-bottom: 30px;
  }
  .hero h1 { font-size: 2rem; }
  .hero .content-wrapper { padding: 18px 0 12px 0; }
}

/* --- FLEX PATTERNS --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: var(--radius-card); }
.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; background: var(--color-light); border-radius: 22px; box-shadow: 0 2px 10px rgba(169, 201, 135, 0.050); margin-bottom: 24px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px) {
  .content-grid, .card-container, .features-grid, .service-list-cards, .team-member-cards, .footer-nav, .footer-subnav {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --- FEATURES GRID (INDEX & SERVICES) --- */
.features-grid, .service-list-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div, .service-list-cards .service-card {
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 12px rgba(36,105,106,0.085);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 240px;
  max-width: 320px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1px solid #f3e5c3;
}
.features-grid > div:hover, .service-list-cards .service-card:hover {
  box-shadow: 0 6px 18px rgba(36,105,106,0.15);
  transform: translateY(-4px) scale(1.03);
}
.features-grid img, .service-list-cards img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.features-grid h3, .service-list-cards h3 {
  color: var(--color-green);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.features-grid p, .service-list-cards p {
  color: #40483c;
  font-size: 1rem;
  margin-bottom: 4px;
}
.service-price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.07rem;
  margin-top: auto;
}
@media (max-width: 1080px) {
  .features-grid > div,
  .service-list-cards .service-card { flex: 1 1 68vw; max-width: 98vw; }
}

/* --- ABOUT MINI TEAM INTRO --- */
.mini-team-intro {
  border-radius: 12px;
  background: #e6f2e3;
  padding: 18px 18px 14px 18px;
  margin-top: 12px;
}
.mini-team-intro h3 { color: var(--color-primary); margin-bottom: 7px; }
.mini-team-intro p { color: #304028; }

/* --- TEAM PAGE --- */
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.team-member-cards > div {
  background: var(--color-light);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(36,105,106,0.09);
  padding: 26px 22px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 320px;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1px solid #f3e5c3;
}
.team-member-cards > div:hover {
  box-shadow: 0 8px 24px rgba(36,105,106,0.13);
  transform: translateY(-2px) scale(1.03);
}
.team-member-cards img {
  width: 72px; height: 72px; border-radius: 50%; margin-bottom: 12px; background: #eceada;
}
.member-quotes blockquote { color: var(--color-accent); font-size: 1.07rem; border-color: var(--color-green-light); }

/* --- VALUES LIST --- */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
}
.values-list li {
  background: #e6f2e3;
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 14px;
  min-width: 210px;
  color: #304028;
}
.values-list img {
  width: 32px; height: 32px; }
@media (max-width: 768px) { .values-list { flex-direction: column; gap: 16px; } }

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 12px rgba(36,105,106,0.06);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--color-light);
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e1ddc8;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--color-green-light);
  color: #304028;
  font-weight: 700;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }

.note {
  font-size: 0.98rem;
  color: #676c54;
  margin-top: 12px;
}

/* --- FAQ, ACCORDION --- */
.faq-accordion { display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: #f7fbe6;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(76, 131, 28, 0.055);
  padding: 18px 20px;
  transition: box-shadow 0.18s;
}
.faq-item h3 { color: var(--color-primary); font-size: 1.05rem; margin-bottom: 5px; }
.faq-item p { color: #535D49; font-size: 0.96rem; }

/* --- CTA / CONTACT INFO --- */
.cta-block {
  background: linear-gradient(98deg, #e6f2e3 65%, #fffbe6 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 3px 14px rgba(36, 105, 106, 0.09);
  padding: 32px 26px;
  align-items: flex-start;
  gap: 18px;
}
.cta-block h2 { margin-bottom: 10px; }
.contact-info {
  font-size: 1rem;
  color: var(--color-dark);
  margin-top: 10px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cta-block { padding: 18px 10px; border-radius: 16px; }
}

/* --- MAP EMBED --- */
.map-embed {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e6f2e3;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 1rem;
  margin-top: 16px;
}
.map-embed img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* --- TIP LIST (ADVICE) --- */
.tip-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tip-list li {
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(36,105,106, 0.05);
  padding: 18px 18px 14px 18px;
  color: #304028;
  font-size: 1rem;
}
.tip-list strong { color: var(--color-accent); }
.tip-list a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.18s; }
.tip-list a:hover { color: var(--color-green); }

/* --- NAVIGATION --- */
header {
  width: 100%;
  background: var(--color-light);
  box-shadow: 0 2px 10px rgba(36,105,106,0.11);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 8px;
}
nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 28px;
}
nav > a img {
  width: 130px;
  height: auto;
  margin-right: 20px;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 0 14px 0 0;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.18s, color 0.2s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--color-green-light);
  color: var(--color-accent);
}
.btn-primary {
  padding: 10px 30px;
  border-radius: var(--radius-btn);
  background: var(--color-primary);
  color: var(--color-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  box-shadow: 0 3px 18px rgba(36,105,106,0.16);
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.23s, color 0.18s, transform 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent);
  color: var(--color-light);
  transform: scale(1.04);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 401;
  transition: background .18s, color 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent-light);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(246, 242, 224, 0.97);
  z-index: 400;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.76,.06,.49,1.06);
  box-shadow: 0 0 24px rgba(36,105,106,0.23);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 2.2rem;
  border: none;
  margin: 15px 22px 0 auto;
  cursor: pointer;
  transition: background .18s, color 0.18s;
  box-shadow: 0 4px 17px rgba(36,105,106,0.12);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.20rem;
  color: var(--color-primary);
  padding: 14px 4px 10px 4px;
  border-radius: 18px;
  transition: background 0.17s, color 0.17s;
  min-width: 70vw;
  margin-bottom: 14px;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-green-light);
  color: var(--color-accent);
}
@media (max-width: 1025px) {
  nav ul, nav .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- FOOTER --- */
footer {
  background: var(--color-green-light);
  border-top: 3px solid var(--color-accent);
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding: 31px 20px 15px 20px;
  justify-content: space-between;
}
.footer-brand img {
  width: 56px;
  margin-bottom: 13px;
}
.footer-nav, .footer-subnav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav a, .footer-subnav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  opacity: .85;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background 0.17s, color 0.14s;
}
.footer-nav a:hover, .footer-subnav a:hover {
  background: var(--color-accent);
  color: var(--color-light);
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  min-width: 72px;
  margin-top: 2px;
}
.footer-social img {
  width: 32px; height: 32px; border-radius: 10px; background: #fffef9;
  border: 1.8px solid #ededcb;
  padding: 4px;
  box-shadow: 0 1px 2px rgba(36,105,106,0.07);
  transition: border-color 0.16s;
}
.footer-social img:hover { border-color: var(--color-primary); }
footer small {
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
  color: #40612e;
  font-size: 0.98rem;
  opacity: 0.9;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 6px 8px 6px;
  }
  .footer-nav, .footer-subnav {
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 5px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: var(--color-light);
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(169,201,135,0.06);
  color: var(--color-primary);
  align-items: center;
}
.testimonial-card blockquote {
  color: var(--color-green);
  font-size: 1.08rem;
  border-left: 6px solid var(--color-accent-light);
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 14px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 8888;
  background: linear-gradient(98deg, #FEF6E7 90%, #A9C987 100%);
  box-shadow: 0 -2px 16px rgba(36,105,106,0.14);
  border-top: 2.5px solid var(--color-green-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 18px 20px 18px;
  gap: 22px;
  justify-content: center;
  transition: transform 0.34s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  font-size: 1rem;
  color: #3b4632;
  flex: 1 1 auto;
}
.cookie-banner .cookie-btn {
  padding: 9px 23px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 10px;
  background: var(--color-primary);
  color: var(--color-light);
  border: none;
  cursor: pointer;
  margin-bottom: 4px;
  transition: background .17s, color .15s, transform .13s;
}
.cookie-banner .cookie-btn:last-child { margin-right: 0; }
.cookie-banner .cookie-btn.accept {
  background: var(--color-green);
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-accent);
}
.cookie-banner .cookie-btn.settings {
  background: #e6f2e3;
  color: var(--color-primary);
  border: 1.5px solid var(--color-green);
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: var(--color-accent);
  color: var(--color-light);
  transform: scale(1.03);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 7px;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(86,98,44,0.30);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 30px;
  box-shadow: 0 8px 44px rgba(36,105,106,0.14);
  padding: 42px 38px 30px 38px;
  max-width: 375px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  color: #313922;
  animation: fadein .3s;
}
@keyframes fadein{
  from { opacity:.2; transform:translateY(80px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-green);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  color: #2C3A18;
}
.cookie-toggle {
  width: 46px; height: 25px; border-radius: 14px;
  background: var(--color-green-light);
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle[aria-checked="true"] { background: var(--color-green); }
.cookie-toggle .cookie-slider {
  position: absolute; top:2px; left: 2px;
  width: 21px; height: 21px;
  background: #fff;
  border-radius: 50%;
  transition: left .15s;
}
.cookie-toggle[aria-checked="true"] .cookie-slider {
  left: 23px;
}
.cookie-modal .modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  width: 28px; height: 28px;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  border: none;
  transition: background .15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--color-green);
}
@media (max-width: 500px) {
  .cookie-modal { padding: 20px 6vw 15px 6vw; border-radius: 18px; }
}

/* --- BUTTONS & INTERACTIONS --- */
button, .btn, .btn-primary, .cookie-btn {
  outline: none;
  cursor: pointer;
  transition: background .18s, color .17s, box-shadow .14s, transform .11s;
}
a.btn-primary {
  display: inline-block;
  text-align: center;
  min-width: 154px;
  font-size: 1.15rem;
}
.btn-primary:focus-visible { outline: 3px solid var(--color-accent); }

/* --- MISC --- */
ul, ol { margin-left: 0 !important; padding-left: 0 !important; }
li { margin-bottom: 10px; }
@media (max-width: 480px) { h1 { font-size: 1.45rem; } h2 { font-size: 1.02rem; } .btn-primary { font-size: 1rem; padding: 8px 18px; } }
main { padding-bottom: 90px; /* reserve for cookie banner */ }

/* --- UTILITY CLASSES --- */
.hide { display: none !important; }
.flex { display: flex; }
.center { align-items: center; justify-content: center; }
.gap8 { gap: 8px; } .gap16 { gap: 16px; } .gap24 { gap: 24px; } .gap32 { gap: 32px; }
.rounded { border-radius: 19px; }
.shadow-soft { box-shadow: var(--shadow-soft); }

/* ================================ */
/* NATURE ORGANIC DECORATIVE ELEMENTS */
/* ================================ */
.section, .card, .cta-block, .testimonial-card, .features-grid > div, .service-card, .mini-team-intro, .team-member-cards > div, .faq-item, .values-list li, .tip-list li {
  /* Subtle organic blob shadow (SVG or box-shadow would be here in production) */
  position: relative;
  overflow: hidden;
}
.section::before, .cta-block::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  left: -25px;
  top: -45px;
  width: 222px;
  height: 130px;
  background: rgba(36,105,106,0.07);
  border-radius: 50% 40% 80% 60%/60% 70% 40% 80%;
  pointer-events: none;
}

.features-grid > div::after, .service-card::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  right: -36px; top: auto; bottom: -34px;
  width: 102px; height: 70px;
  background: rgba(185, 234, 138, 0.26);
  border-radius: 60% 50% 60% 40%/40% 90% 60% 70%;
  pointer-events: none;
}

@media (max-width:768px){
  .section::before, .cta-block::before { display: none; }
  .features-grid > div::after, .service-card::after { width: 68px; height:44px; right: -10px; bottom: -12px; }
}

/* END OF CSS */
