/* === CSS RESET & NORMALIZATION === */
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.55;
  background: #F5F1E6;
  color: #0f453b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a { 
  color: #146152;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus { 
  color: #F9AC32;
}
img { 
  max-width: 100%; 
  display: block;
}

/* === BRAND COLORS & FONTS === */
:root {
  --primary: #146152;
  --secondary: #F5F1E6;
  --accent: #F9AC32;
  --dark: #0f453b;
  --text: #192923;
  --white: #fff;
  --shadow: 0 4px 16px 0 rgba(40,36,28,0.09);
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm45_QphziTn89dtpQ.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v25/JTURjIg1_i6t8kCHKm45_cJD3gnD-w.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
}
p, ul, ol, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
strong { font-weight: 700; }

.subheadline {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.015em;
}

/* === LAYOUT CONTAINERS & SPACING === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(20,97,82,0.09);
  position: relative;
  padding: 24px 20px;
  transition: transform .16s, box-shadow .25s;
}
.card:hover, .card:focus-within {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 32px 0 rgba(249,172,50,.08),0 3px 15px rgba(20,97,82,0.056);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(20,97,82,0.10);
  margin-bottom: 24px;
  color: #122a23;
  max-width: 540px;
  width: 100%;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #212d28;
  margin-bottom: 8px;
  quotes: "\201E" "\201C";
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
  vertical-align: top;
  margin-right: 7px;
}
.testimonial-card footer {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 3px 20px 0 rgba(20,97,82,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 22px;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
}
.logo img {
  height: 52px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  border-radius: 6px;
  transition: background .16s, color .16s;
}
.main-nav a.button-primary {
  background: var(--accent);
  color: var(--dark);
  border-radius: 23px;
  padding: 8px 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(249,172,50,0.16);
  transition: box-shadow 0.18s, background 0.18s, transform 0.12s;
}
.main-nav a.button-primary:hover, .main-nav a.button-primary:focus {
  background: #ffbe55;
  color: #0f453b;
  box-shadow: 0 4px 22px 0 rgba(249,172,50,0.11);
  transform: translateY(-2px) scale(1.03);
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  color: var(--accent);
  background: #f7e9d5;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  outline: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 14px;
  transition: background .18s;
  z-index: 60;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd386;
  color: #078766;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform .35s cubic-bezier(.7,0,.3,1), opacity .24s;
  box-shadow: 0 10px 48px 0 rgba(20,97,82,0.16);
  padding: 22px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  align-self: flex-end;
  margin: 16px 32px 18px 0;
  cursor: pointer;
  transition: background .13s;
  z-index: 101;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ffd386;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  width: 100%;
  padding-left: 44px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color .15s, background .15s;
  outline: none;
  border-radius: 7px;
  min-width: 170px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9AC32;
  color: #122a23;
}
@media (max-width: 1100px) {
  .main-nav { gap: 12px; }
  header .container { padding: 0 15px; }
}
@media (max-width: 850px) {
  .main-nav a { font-size: 0.95rem; }
  .logo img { height: 45px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  .logo img { height: 36px; }
  header .container {
    min-height: 56px;
    padding: 0 9px;
  }
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(90deg, #F5F1E6 60%, #ffe4a7 100%);
  border-radius: 0 0 24px 24px;
  padding: 50px 0 32px 0;
  margin-bottom: 42px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
  line-height: 1.17;
}
.hero .subheadline {
  margin-bottom: 22px;
  color: #0f453b;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* === FEATURES / HIGHLIGHTS / CARDS === */
.features-grid,
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 22px 0;
  width: 100%;
  align-items: flex-start;
}
.features-grid li, .features-grid > div,
.features-list li, .features-list > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(249,172,50,0.09);
  padding: 24px 18px 20px 18px;
  flex: 1 1 215px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  transition: transform 0.14s, box-shadow 0.17s;
}
.features-grid li:hover, .features-grid > div:hover,
.features-list li:hover, .features-list > div:hover {
  transform: translateY(-4px) scale(1.028);
  box-shadow: 0 4px 20px 0 rgba(249,172,50,0.15);
}
.features-grid img, .features-list img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 5px;
}
.features-grid h3, .features-list h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.features-grid p, .features-list p {
  font-size: 1rem;
  text-align: center;
  color: var(--text);
  font-family: 'Roboto', Arial, sans-serif;
}

/* === SERVICES LIST === */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 29px;
  align-items: stretch;
}
.services-list li, .services-list > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px 0 rgba(20,97,82,0.09);
  padding: 22px 18px 18px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  align-items: flex-start;
  transition: box-shadow .13s, transform .13s;
  position: relative;
  border-left: 8px solid var(--accent);
}
.services-list li span, .services-list > div span {
  color: var(--accent);
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.services-list li strong, .services-list > div strong {
  font-size: 1.05rem;
  color: var(--primary);
}
.services-list li:hover, .services-list > div:hover {
  box-shadow: 0 6px 22px 0 rgba(249,172,50,0.10);
  transform: scale(1.026);
}

/* === CTA, FILTERS & BENEFITS === */
.cta-banner, .contact-cta {
  background: linear-gradient(90deg, #ffecba 50%, #F9AC32 100%);
  border-radius: 22px;
  padding: 34px 18px;
  margin-bottom: 38px;
  text-align: center;
  box-shadow: 0 1px 10px 0 rgba(249,172,50,0.09);
}
.contact-cta { margin-bottom: 0; }
.cta-banner h2, .contact-cta h2 {
  color: var(--dark);
  font-size: 2rem;
  margin-bottom: 10px;
}
.filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin: 16px 0 20px 0;
}
.filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.filters ul li a {
  background: #fff4da;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  padding: 6px 16px;
  transition: background .13s, color .13s;
}
.filters ul li a:hover, .filters ul li a:focus {
  background: var(--accent);
  color: #122a23;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 21px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(20,97,82,0.07);
  padding: 15px 14px;
  min-width: 190px;
  flex: 1 1 170px;
  margin-bottom: 20px;
}
.benefits-list img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-right: 2px;
}

/* === ACCORDION (FAQ) === */
.faq-section {
  background: #fffcea;
  border-radius: 24px;
  padding: 38px 18px;
  margin-bottom: 38px;
  box-shadow: 0 1px 8px 0 rgba(249,172,50,0.08);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 5px 0 rgba(20,97,82,0.10);
  padding: 15px 18px;
  margin-bottom: 11px;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 3px;
  cursor: pointer;
  user-select: none;
}
.faq-accordion div > div {
  font-size: 1rem;
  color: var(--text);
  font-family: 'Roboto', Arial, sans-serif;
}

/* === TEAM MEMBERS GRID === */
.team-members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.team-members-grid > div {
  padding: 18px 15px 12px 15px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(20,97,82,0.08);
  min-width: 180px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow .14s, transform .14s;
}
.team-members-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(20,97,82,0.12);
  transform: scale(1.022);
}

.partner-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}
.partner-logos img {
  height: 38px;
  width: auto;
}

/* === THANK YOU / SUCCESS PAGE === */
.thank-you {
  background: linear-gradient(85deg, #eaffe8 50%, #fffbe7 100%);
  border-radius: 24px;
  padding: 48px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 19px 0 rgba(20,97,82,0.07);
}
.thank-you .content-wrapper {
  align-items: center;
  gap: 18px;
}
.confirmation-message {
  font-size: 1.20rem;
  color: var(--primary);
}
.next-steps ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.next-steps li {
  list-style: disc outside;
  margin-left: 24px;
  color: #2a5838;
  font-size: 1rem;
}

/* === BUTTONS === */
.button-primary {
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(249,172,50,0.10);
  transition: background .18s, transform .15s, box-shadow .18s;
  margin-top: 6px;
  display: inline-block;
  outline: none;
}
.button-primary:hover, .button-primary:focus {
  background: #ffd386;
  color: #083d2f;
  box-shadow: 0 5px 22px 0 rgba(249,172,50,0.14);
  transform: translateY(-2px) scale(1.035);
}
.button-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .12s, color .12s, border .12s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

/* === FOOTER === */
footer {
  background: #0f453b;
  color: #fff;
  width: 100%;
  padding: 38px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color .12s, opacity .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  opacity: 0.87;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-social {
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.footer-social img {
  height: 29px;
  width: 29px;
  filter: brightness(92%) contrast(130%);
  opacity: 0.82;
  transition: opacity .14s;
  cursor: pointer;
}
.footer-social img:hover {
  opacity: 1;
}
footer strong {
  color: var(--accent);
  font-weight: 700;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #192923;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px 24px 19px;
  z-index: 1200;
  box-shadow: 0 -3px 26px 0 rgba(20,97,82,0.14);
  gap: 28px;
  font-size: 1.02rem;
  animation: cookieBannerIn 0.89s cubic-bezier(.3,1.12,.7,.98);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(160px); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  padding: 9px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background .14s;
  margin: 0 1px;
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--dark);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #ffd98e;
  color: var(--primary);
}
.cookie-banner .reject {
  background: #edeae3;
  color: #b25a19;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e2b37d;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: #122a23;
}

.cookie-modal-backdrop {
  display: flex;
  position: fixed;
  z-index: 1210;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 41, 35, 0.48);
  align-items: center;
  justify-content: center;
  opacity: 1; 
  animation: cookieModalFadeIn .32s;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 38px 32px 29px 32px;
  max-width: 410px;
  box-shadow: 0 8px 42px rgba(20,97,82,0.14), 0 1.5px 5px rgba(249,172,50,0.09);
  font-size: 1.07rem;
  color: var(--dark);
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookiePopupScaleIn .38s cubic-bezier(.64,1.64,.41,.71);
}
@keyframes cookiePopupScaleIn {
  0% { transform: scale(.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.7rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
}
.cookie-category {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .close-cookie-modal {
  background: transparent;
  color: var(--primary);
  font-size: 1.25rem;
  border: none;
  border-radius: 7px;
  position: absolute;
  top: 15px;
  right: 18px;
  cursor: pointer;
  padding: 0;
  transition: color .14s;
}
.cookie-modal .close-cookie-modal:hover { color: var(--accent); }

/* ===== POLICY TEXT SECTION ===== */
.policy {
  margin-bottom: 38px;
  padding: 38px 0;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(20,97,82,0.06);
  border-radius: 18px;
}
.policy .content-wrapper {
  gap: 18px;
}
.policy h1 {
  color: var(--primary);
  font-size: 2.14rem;
  margin-bottom: 8px;
}
.policy h2 { margin-top: 9px; margin-bottom: 6px; }
.policy ul { margin-left: 32px; margin-bottom: 9px; }
.policy li { list-style: disc outside; margin-bottom: 7px; }
.policy a { color: var(--accent); }
.policy a:hover, .policy a:focus { color: var(--primary); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1000px) {
  .features-grid,
  .features-list,
  .services-list,
  .benefits-list {
    gap: 15px;
  }
  .team-members-grid,
  .card-container {
    gap: 15px;
  }
  .container { padding: 0 10px; }
}
@media (max-width: 850px) {
  .features-grid li, .features-grid > div,
  .features-list li, .features-list > div, 
  .services-list li, .services-list > div {
    min-width: 170px;
    padding: 18px 10px 16px 10px;
  }
  .team-members-grid > div { min-width: 140px; padding: 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .section,
  .policy,
  .faq-section,
  .cta-banner,
  .thank-you {
    padding: 27px 7px;
    border-radius: 17px;
  }
  .features-grid, .features-list, .services-list, .benefits-list {
    flex-direction: column;
    gap: 13px;
  }
  .card-container,
  .team-members-grid {
    flex-direction: column;
    gap: 13px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .footer-social { gap:10px; }
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 20px 8px;
    font-size: 0.96rem;
  }
  .cookie-modal {
    padding: 16px 11px 14px 16px;
    max-width: 99vw;
    font-size: .98rem;
  }
}
@media (max-width: 480px) {
  .hero { padding: 18px 0 15px 0; }
  .cta-banner, .thank-you, .policy, .faq-section { padding-left: 0; padding-right: 0; }
}

/* ===== ARTISTIC ACCENTS & MICRO-INTERACTIONS ===== */
.features-grid li, .features-grid > div, .features-list li, .features-list > div,
.services-list li, .services-list > div, .testimonial-card, .team-members-grid > div {
  transition: box-shadow .14s, transform .14s, background .13s;
  outline: none;
}
.features-grid li:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 38px;
  height: 18px;
  background: url('../assets/icons/scribble-accent.svg') no-repeat center/contain;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.features-grid li:after { display: none; }
.features-grid li:hover:after { display: block; animation: scribbleAnim .9s; }
@keyframes scribbleAnim {
  0% { opacity: 0; transform: scale(.7) rotate(-5deg); }
  60% { opacity: .13; transform: scale(1.16) rotate(3deg); }
  100% { opacity: .13; transform: scale(1) rotate(0deg); }
}
.button-primary, .button-secondary, .main-nav a.button-primary {
  transition: box-shadow .18s, transform .14s, background .12s, color .12s;
}
.button-primary:active { transform: scale(0.98); }

/* ========== MAP SNIPPET STYLE ========== */
.map-snippet {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(249,172,50,0.09);
  margin-top: 10px;
  margin-bottom: 9px;
}

/* ========== MISC ========== */
::-webkit-input-placeholder { color: #767676; }
::-moz-placeholder { color:#767676; }
:-ms-input-placeholder { color:#767676; }
::placeholder { color:#767676; }

::-webkit-scrollbar {
  width: 10px;
  background: #f2f1ee;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #cbd4cb;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8beb2;
}

/* ===== PRINT ===== */
@media print {
  header, .main-nav, .mobile-menu, .cookie-banner, footer {display: none !important;}
  main, .main {padding: 0 !important;}
}
