/* =======================
   RESET & BASE 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 {
  line-height: 1.15;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F8F6F0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #19324A;
  background-color: #F8F6F0;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #14572f;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #2c5226;
  outline: none;
}
ul,ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
  outline: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #19324A;
  font-weight: 700;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #19482e;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #263e2e;
  margin-bottom: 16px;
}
strong {
  color: #14572f;
  font-weight: 700;
}

/* ======================
   LAYOUT CONTAINERS
   ====================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(35, 40, 25, 0.06);
  /* Subtle "paper" effect */
}

/* ============
   HEADER
   ============ */
header {
  background: #EBECDF;
  box-shadow: 0 1px 8px rgba(35,48,25,0.04);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  margin-bottom: 32px;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100px;
}
.logo img {
  height: 52px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #19324A;
  letter-spacing: 0.02em;
  font-size: 1rem;
  transition: color 0.16s;
  position: relative;
  padding: 6px 8px;
  border-radius: 10px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #d7f3d0;
  color: #14572f;
}
.cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 14px 32px;
  font-size: 1.08rem;
  background: #F5B041;
  color: #19482e;
  border: none;
  box-shadow: 0 2px 8px rgba(180,145,45,0.09);
  transition: background 0.2s, color 0.18s, box-shadow 0.22s;
  margin-left: 16px;
  display: inline-block;
}
.cta-button.primary {
  background: #19324A;
  color: #fff;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #246c35;
  color: #fff;
  box-shadow: 0 6px 16px rgba(43,73,42,0.10);
}
.cta-button:not(.primary):hover, .cta-button:not(.primary):focus {
  background: #EF9F24;
  color: #234014;
  box-shadow: 0 4px 14px rgba(211,169,70,0.14);
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 2001;
  font-size: 2.25rem;
  color: #14572f;
  background: #fff;
  border: 2px solid #d1e7dd;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,44,32,0.97);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transition: transform 0.36s cubic-bezier(.4,0,.2,1);
  transform: translateX(-100vw);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 22px;
  margin-left: 26px;
  margin-bottom: 18px;
  font-size: 2rem;
  color: #fff;
  border: 2px solid #2bbc68;
  background: transparent;
  border-radius: 14px;
  padding: 6px 16px;
  align-self: flex-start;
  transition: background 0.18s, color 0.18s, border 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5B041;
  background: rgba(36,108,53,0.17);
  border-color: #F5B041;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding-left: 36px;
  padding-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.26rem;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: background .21s, color 0.19s;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2bbc68;
  color: #fffbe1;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/* =============
   HERO SECTION
   ============= */
.hero {
  background: linear-gradient(116deg, #f0efe9 85%, #d1e7dd 100%);
  min-height: 360px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(52, 86, 77, 0.08);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 320px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  justify-content: center;
  gap: 18px;
}
.hero h1 {
  color: #19324A;
  font-size: 2.45rem;
  margin-bottom: 0.6em;
  letter-spacing: -1px;
}
.hero p {
  color: #246c35;
  font-size: 1.25rem;
  margin-bottom: 1.2em;
}
.hero .cta-button {
  margin-top: 8px;
  min-width: 220px;
}

@media (max-width: 768px) {
  .hero {
    min-height: unset;
    border-radius: 17px;
  }
  .hero .container {
    min-height: 160px;
    padding-top: 36px;
    padding-bottom: 36px;
    flex-direction: column;
  }
  .hero .content-wrapper {
    max-width: unset;
    padding: 0;
  }
}

/* ===================
   FEATURES SECTION
   =================== */
.features {
  background: #f6fff9;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36, 108, 53, 0.06);
  padding: 30px 18px 24px 18px;
  flex: 1 1 220px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 210px;
  transition: transform 0.14s, box-shadow 0.22s;
}
.feature:hover, .feature:focus-within {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 6px 24px rgba(55, 159, 83, 0.17);
}
.feature img {
  height: 38px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #e6f3dc;
  padding: 8px;
}
.feature h3 {
  color: #14572f;
  font-size: 1.11rem;
}
.feature p {
  font-size: 0.96rem;
  color: #385244;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .feature-grid {
    gap: 20px;
  }
  .feature {
    min-width: 170px;
    max-width: 48%;
    padding: 22px 12px;
  }
}
@media (max-width: 678px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}

/* ===========================
   ABOUT / TEXT SECTIONS
   =========================== */
.about-preview, .company, .values, .team, .privacy-policy, .gdpr-info, .cookie-policy, .terms {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(35, 48, 25, 0.05);
}
.content-wrapper {
  padding: 0 12px;
}
.text-section {
  margin-bottom: 30px;
  font-size: 1.08rem;
}

/* =====================
   SERVICES OVERVIEW
   ===================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  align-items: flex-start;
}
.service-list li {
  background: #e7f4df;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 1rem;
  color: #19324A;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 210px;
}
.service-list img {
  height: 28px;
  border-radius: 7px;
  background: #fff;
  padding: 4px;
}
@media (max-width: 800px) {
  .service-list {
    flex-direction: column;
    gap: 14px;
  }
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #e7f4df;
  border-radius: 14px;
  min-width: 180px;
  max-width: 240px;
  padding: 20px 14px;
  margin-bottom: 20px;
  gap: 15px;
  box-shadow: 0 1px 8px rgba(55, 159, 83, 0.06);
}
.service-item img {
  height: 28px;
  padding: 5px;
  background: #fff;
  border-radius: 8px;
}

@media (max-width: 650px) {
  .icon-grid {
    flex-direction: column;
    gap: 14px;
  }
  .service-item {
    max-width: 100%;
    min-width: unset;
  }
}

/* ===========
   CTA SECTION
   =========== */
.cta {
  margin-bottom: 70px;
  padding: 42px 20px;
  background: linear-gradient(102deg, #e7f4df 78%, #fff4e3 100%);
  border-radius: 26px;
  box-shadow: 0 2px 16px rgba(85, 145, 90, 0.07);
  display: flex;
  align-items: center;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.cta h2 {
  color: #14572f;
  font-size: 1.7rem;
}
.cta p {
  color: #385244;
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .cta {
    padding: 30px 10px;
  }
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials, .testimonials-brief {
  background: #f6fff9;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px 10px 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(55, 159, 83, 0.04);
  padding: 24px 22px 18px 22px;
  margin-bottom: 24px;
  max-width: 600px;
  color: #254534;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #234014;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #6e826d;
}
.testimonial-card strong {
  color: #14572f;
  font-weight: 700;
}

@media (max-width: 650px) {
  .testimonial-card {
    padding: 18px 12px 14px 12px;
    max-width: 100%;
  }
}

/* ===========================
   PROJECTS TIMELINE & STEPS
   =========================== */
.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  justify-content: space-between;
}
.step {
  flex: 1 1 210px;
  background: #e7f4df;
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 1px 8px rgba(65, 159, 83, 0.07);
  margin-bottom: 20px;
  min-width: 150px;
}
.step img {
  height: 28px;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}
@media (max-width: 850px) {
  .step-timeline {
    flex-direction: column;
    gap: 16px;
  }
  .step {
    width: 100%;
  }
}

/* =========================
   FAQ SECTION
   ========================= */
.faq-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(36, 108, 53, 0.04);
  margin-bottom: 24px;
  padding: 18px 22px;
}
.faq-block h3 {
  color: #14572f;
  margin-bottom: 9px;
}
.faq-block p {
  color: #335d43;
}

/* =========================
   CONTACT PAGE
   ========================= */
.contact-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(37, 95, 62, 0.04);
  margin-bottom: 50px;
  padding: 32px 22px 22px 22px;
}
.contact-info {
  background: #e7f4df;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(65, 159, 83, 0.05);
  margin-bottom: 30px;
  padding: 20px 20px 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 1rem;
  color: #14572f;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.contact-info img {
  height: 16px;
  width: 16px;
}

/* ===========
   FOOTER
   =========== */
footer {
  background: #19324A;
  color: #fff;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -2px 28px rgba(28,44,31,0.09);
  padding: 40px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer .logo img {
  height: 50px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #e7f4df;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F5B041;
  color: #14572f;
}
footer .contact-info {
  background: #254534;
  color: #ecfbe8;
  border-radius: 11px;
  font-size: 0.99rem;
  box-shadow: none;
  padding: 10px 30px;
  gap: 14px;
  margin-bottom: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom {
  width: 100%;
  font-size: 0.97rem;
  text-align: center;
  color: #b5cab7;
  margin-top: 8px;
}

@media (max-width: 600px) {
  footer {
    padding: 26px 0 6px 0;
  }
  .footer-nav {
    gap: 13px;
  }
  footer .container {
    gap: 10px;
  }
  .footer-bottom {
    font-size: 0.93rem;
  }
  footer .contact-info {
    font-size: 0.94rem;
    padding: 8px 10px;
    gap: 7px;
  }
}

/* ======================
   RESPONSIVE UTILITIES
   ====================== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}

@media (max-width: 800px) {
  .header .container,.footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 700px) {
  .section {
    padding: 22px 3px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
}

/* =========================
   FLEXBOX LAYOUT PATTERNS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,108,53,0.06);
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(36, 108, 53, 0.12);
  transform: translateY(-3px) 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Minimum spacing between cards/sections */
.card, .section, .feature, .service-item, .step, .faq-block, .testimonial-card {
  margin-bottom: 20px;
}

/* Prevent content overlap, handle stacking */
.card, .section, .feature, .service-item, .step, .faq-block, .testimonial-card {
  z-index: 1;
}

/* Prevent absolute position on cards */
.card, .feature, .service-item, .step, .section, .testimonial-card {
  position: relative;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #14572f;
  color: #fff;
  padding: 22px 32px 20px 32px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -4px 24px rgba(31, 67, 33, 0.25);
  z-index: 3200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  animation: cookieBannerIn 0.55s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  padding: 7px 18px;
  border: none;
  transition: background 0.2s, color 0.18s, box-shadow 0.19s;
  margin-right: 6px;
}
.cookie-banner .accept-all {
  background: #F5B041;
  color: #19482e;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #e99a1a;
  color: #fff;
}
.cookie-banner .reject-all {
  background: #fff;
  color: #14572f;
  border: 1px solid #94caac;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #ecfbe8;
  color: #14572f;
}
.cookie-banner .cookie-settings {
  background: #e7f4df;
  color: #14572f;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #b2dbbb;
  color: #19482e;
}
@media (max-width: 700px) {
  .cookie-banner {
    padding: 10px 8px 10px 8px;
    border-radius: 10px 10px 0 0;
  }
  .cookie-banner .cookie-btn-group {
    flex-direction: column;
    gap: 7px;
  }
}

/* ==========================
   COOKIE SETTINGS MODAL
   ========================== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3250;
  inset: 0;
  background: rgba(24,44,32,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.36s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #19324A;
  border-radius: 18px;
  box-shadow: 0 2px 44px rgba(41, 113, 54, 0.23);
  padding: 34px 28px 24px 28px;
  max-width: 400px;
  width: 92vw;
  z-index: 3251;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalIn 0.36s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalIn {
  from { transform: translateY(25px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #14572f;
  font-size: 1.35rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 600;
  color: #234014;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F5B041;
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.cookie-modal .cookie-category.essential label {
  color: #9ca898;
  cursor: not-allowed;
}
.cookie-modal .cookie-category.essential input {
  cursor: not-allowed;
  background: #e7f4df;
  border-color: #e7f4df;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-save {
  background: #F5B041;
  color: #19482e;
  padding: 8px 26px;
  font-weight: bold;
  border-radius: 14px;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: #df9a21;
  color: #fff;
}
.cookie-modal .cookie-cancel {
  background: #e7f4df;
  color: #14572f;
  padding: 8px 20px;
  border-radius: 13px;
}
.cookie-modal .cookie-cancel:hover, .cookie-modal .cookie-cancel:focus {
  background: #b2dbbb;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 10px 12px 10px;
    border-radius: 10px;
  }
}

/* =============================
   CONFIRMATION & POLICY PAGES
   ============================= */
.confirmation {
  background: #f6fff9;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(35, 48, 25, 0.05);
  padding: 40px 20px 34px 20px;
  text-align: center;
  margin-bottom: 34px;
}
.confirmation h1 {
  margin-bottom: 18px;
}
.confirmation p {
  color: #14572f;
  margin-bottom: 14px;
  font-size: 1.04rem;
}

.privacy-policy, .gdpr-info, .cookie-policy, .terms {
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(36,108,53,0.04);
  margin-bottom: 30px;
  padding: 30px 18px;
}

/* =============================
   MISC. DECORATIVE ELEMENTS
   ============================= */
/* Rounded highlight, leaf pseudo-elements, etc. can be added for organic shape, e.g. below/horizon */
.section, .hero, .about-preview, .features, .testimonials, .cta, .service-list li, .service-item, .faq-block, .testimonial-card, .step, .confirmation {
  box-shadow:
    0 2px 16px rgba(35, 48, 25, 0.06),
    0 0px 0px 1px rgba(214, 254, 218, 0.03);
}

/* Subtle shadow on hover for interactive sections */
.section:hover, .cta:hover, .card:hover {
  box-shadow: 0 10px 30px rgba(66, 146, 91, 0.09);
}

/* ======================
   WHITE SPACE UTILITIES
   ====================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

/* ======================
   TYPOGRAPHY CLASSES
   ====================== */
.display-48 {
  font-size: 3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.08;
}
.display-32 { font-size: 2rem; font-weight: 700; }
.display-24 { font-size: 1.5rem; font-weight: 700; }

/* ===========
   ANIMATIONS 
   =========== */
.card, .feature, .service-item, .step, .faq-block, .testimonial-card, .cta-button {
  transition: box-shadow 0.23s, transform 0.18s, background 0.19s, color 0.14s;
}

/* ===============
   ACCESSIBILITY
   =============== */
:focus {
  outline: 2px solid #F5B041;
  outline-offset: 2px;
}

/* ===============
   PRINT
   =============== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  .container, main {
    padding: 0 !important;
    margin: 0 !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
}
