/* === CSS RESET & BASE TYPOGRAPHY === */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #273422;
  background-color: #faf9f6;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1a3a5d;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
p, ul, ol {
  margin-bottom: 16px;
  color: #384230;
}
strong {
  color: #384230;
  font-weight: 700;
}
a {
  color: #1a3a5d;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5d7f3a;
  text-decoration: none;
}

/* --- NATURE ORGANIC THEME: COLOR PALETTE --- */
:root {
  --brand-primary: #1a3a5d;          /* Deep blue for trust */
  --brand-secondary: #f4f5f7;       /* Soft, light sand */
  --brand-accent: #d6a252;          /* Warm wheat accent (amber/sand) */
  --soil-brown: #a6844a;            /* Soil brown for cards/shadows */
  --leaf-green: #5d7f3a;            /* Natural green accents */
  --stone-grey: #bdc1b2;            /* Muted earth grey */
  --cream: #f7f4ef;                 /* Cream for backgrounds */
  --organic-shape: cubic-bezier(.77,0,.18,1);
}

/* --- GENERAL LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.section, .legal-section, .hero-section, .features-section, .about-section, .about-preview, .testimonials-section, .services-preview, .services-section, .projects-section, .process-section, .faq-section, .cta-section, .contact-section, .visit-section, .blog-overview-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f7f4ef;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(166,132,74,0.09), 0 1.5px 5px 0 rgba(93,127,58,0.07);
  position: relative;
}
@media (max-width: 768px) {
  .section, .legal-section, .hero-section, .features-section, .about-section, .about-preview, .testimonials-section, .services-preview, .services-section, .projects-section, .process-section, .faq-section, .cta-section, .contact-section, .visit-section, .blog-overview-section, .thank-you-section {
    padding: 32px 10px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #ffffff;
  box-shadow: 0 1px 8px 0 rgba(93,127,58,0.08);
  padding: 0;
  border-bottom: 2px solid #f4f5f7;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #1a3a5d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #5d7f3a;
  background: #f4f5f7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d7f3a;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 22px 8px 24px 12px / 30px 18px 18px 24px;
  padding: 12px 32px;
  box-shadow: 0 4px 16px 0 rgba(166,132,74,0.09);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.3s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #47602a;
  box-shadow: 0 8px 28px 0 rgba(93,127,58,0.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d6a252;
  color: #1a3a5d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  font-weight: 600;
  border: none;
  border-radius: 12px 24px 16px 20px / 18px 16px 32px 10px;
  padding: 12px 28px;
  box-shadow: 0 2px 12px 0 rgba(214,162,82,0.12);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.3s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ad7c2d;
  color: #fff;
  box-shadow: 0 2px 20px 0 rgba(214,162,82,0.17);
}

/* --- Mobile Burger Menu --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 0 12px;
  color: #1a3a5d;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #5d7f3a;
}
@media (max-width: 980px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,43,33,0.87);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.44s var(--organic-shape);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  padding: 16px 24px 4px 18px;
  cursor: pointer;
  align-self: flex-end;
  z-index: 121;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 32px;
  gap: 10px;
}
.mobile-nav a {
  color: #f7f4ef;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 16px 0 10px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 10px;
  text-decoration: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #5d7f3a;
  color: #fff;
}

/* --- Fix mobile menu above all --- */
@media (max-width: 980px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
}
/* End Mobile Nav */

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(120deg, #f4f5f7 72%, #dbe4d4 100%);
  padding-top: 72px;
  padding-bottom: 56px;
  border-radius: 0 0 40px 40px;
  min-height: 360px;
  box-shadow: 0 4px 24px 0 rgba(166,132,74,0.08);
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero-section h1 {
  color: #1a3a5d;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-section .subtitle {
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #47602a;
  margin-bottom: 30px;
}

/* === FLEXBOX CONTAINER PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 24px 32px 20px 18px / 16px 30px 18px 28px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(93,127,58,0.10);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(166,132,74,0.15);
  transform: translateY(-2px) scale(1.015);
}
.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: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f4f5f7;
  border-radius: 20px 28px 12px 24px / 28px 22px 22px 20px;
  box-shadow: 0 2px 10px 0 rgba(166,132,74,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-card:hover {
  background: #e9efde;
  box-shadow: 0 6px 24px 0 rgba(93,127,58,0.09);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #273422;
}
.customer-name {
  font-weight: 700;
  color: #5d7f3a;
  font-size: 1rem;
  margin-top: 4px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px 22px 14px 28px / 30px 16px 24px 18px;
  box-shadow: 0 2px 10px 0 rgba(166,132,74,0.08);
  padding: 22px 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.feature-item h3 {
  color: #5d7f3a;
  font-size: 1.1rem;
}
.feature-item p {
  color: #384230;
  font-size: 1rem;
}
.feature-item:hover {
  box-shadow: 0 8px 24px 0 rgba(93,127,58,0.11);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-item {
  background: #ffffff;
  border-radius: 18px 24px 14px 23px / 18px 19px 18px 28px;
  box-shadow: 0 2px 10px 0 rgba(166,132,74,0.09);
  padding: 20px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  transition: box-shadow 0.2s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-item h2, .service-item h3 {
  color: #1a3a5d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.service-item p {
  font-size: 1rem;
}
.service-item:hover {
  box-shadow: 0 8px 24px 0 rgba(93,127,58,0.12);
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-item {
  background: #ffffff;
  box-shadow: 0 2px 10px 0 rgba(166,132,74,0.07);
  border-radius: 15px 22px 20px 17px / 18px 14px 26px 20px;
  padding: 20px 18px;
  flex: 1 1 300px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.project-item:hover {
  box-shadow: 0 8px 24px 0 rgba(93,127,58,0.13);
}

.methods-list, .faq-list {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 24px;
  color: #384230;
  font-size: 1rem;
}
.methods-list li, .faq-list dd, .faq-list dt {
  margin-bottom: 12px;
  line-height: 1.6;
}
.faq-list dt {
  font-weight: 700;
  margin-top: 10px;
  color: #1a3a5d;
}
.faq-list dd {
  margin-left: 0;
  color: #273422;
}

.step-list {
  margin-left: 24px;
  margin-bottom: 18px;
  color: #384230;
  font-size: 1rem;
}
.step-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-details .text-section {
  flex: 2 1 260px;
}
.contact-details .contact-actions {
  flex: 1 1 150px;
  align-items: center;
  display: flex;
}
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .contact-details .contact-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.badge {
  display: inline-block;
  font-size: 0.93rem;
  background: #dbe4d4;
  color: #47602a;
  padding: 8px 16px;
  border-radius: 18px 11px 15px 17px / 18px 12px 23px 19px;
  font-weight: 600;
  box-shadow: 0 1px 4px 0 rgba(166,132,74,0.08);
}

.office-location, .office-team {
  background: #f4f5f7;
  border-radius: 14px 18px 22px 20px / 20px 16px 14px 17px;
  box-shadow: 0 1px 5px 0 rgba(166,132,74,0.07);
  padding: 16px 18px;
  margin-bottom: 18px;
}

/* === BLOG === */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-item {
  background: #fff;
  padding: 20px 16px;
  box-shadow: 0 2px 8px 0 rgba(214,162,82,0.08);
  border-radius: 16px 28px 14px 18px / 18px 12px 13px 21px;
  flex: 1 1 240px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.blog-item:hover {
  box-shadow: 0 6px 20px 0 rgba(214,162,82,0.13);
}
.blog-item h2 {
  font-size: 1.15rem;
  color: #1a3a5d;
  margin-bottom: 8px;
}

.blog-categories {
  color: #a6844a;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.highlighted-articles {
  background: #dbe4d4;
  color: #273422;
  border-radius: 10px 18px 14px 17px / 13px 11px 22px 15px;
  padding: 12px 16px;
  font-size: 1.07rem;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(132deg, #f7f4ef 80%, #e9efde 100%);
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 2px 14px 0 rgba(166,132,74,0.08);
}
.cta-section h2 {
  margin-bottom: 12px;
}
.cta-section p {
  margin-bottom: 18px;
}
.cta-section .btn-secondary, .cta-section .btn-primary {
  margin-top: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: #1a3a5d;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 28px;
  margin-top: 60px;
}
footer p {
color: white;}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1.5px solid #47602a33;
  padding-bottom: 20px;
}
.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #e9efde;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #d6a252;
}
.footer-contact {
  font-size: 0.98rem;
  color: #dbe4d4;
  line-height: 1.7;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  font-size: 0.90rem;
  text-align: center;
  color: #bdc1b2;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === UTILITY CLASSES / GENERAL === */
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
.text-section {
  margin-bottom: 16px;
}

/* Responsive: mobile-first tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .header .container, .container {
    padding: 0 8px;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f4f5f7;
  color: #273422;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 -2px 15px 0 rgba(166,132,74,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  z-index: 1600;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.98rem;
    padding: 18px 10px 16px 10px;
  }
}
.cookie-banner button {
  margin-right: 12px;
}
.cookie-banner .btn-accept {
  background: #5d7f3a;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 22px 12px 16px 20px / 22px 16px 12px 19px;
  margin-right: 10px;
  transition: background 0.18s, box-shadow 0.12s;
  cursor: pointer;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #47602a;
}
.cookie-banner .btn-reject {
  background: #d6a252;
  color: #1a3a5d;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 16px 18px 10px 15px / 18px 10px 12px 17px;
  transition: background 0.12s, color 0.15s;
  cursor: pointer;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #ad7c2d;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: #5d7f3a;
  border: 1.5px solid #a6844a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  padding: 10px 18px;
  border-radius: 14px;
  transition: border 0.12s, background 0.13s;
  cursor: pointer;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #e9efde;
  border-color: #5d7f3a;
}

/* --- Cookie Preferences Modal --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30, 42, 33, 0.72);
  z-index: 1700;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.22s ease;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #f7f4ef;
  color: #273422;
  padding: 38px 24px 28px 26px;
  border-radius: 30px 24px 38px 18px / 30px 34px 14px 21px;
  max-width: 420px;
  min-width: 260px;
  box-shadow: 0 6px 44px 0 rgba(166,132,74,0.24);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 26px 8px 16px 13px;
  }
}
.cookie-modal h3 {
  color: #1a3a5d;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  font-size: 1rem;
  color: #384230;
  cursor: pointer;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #5d7f3a;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-category.essential input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-category.essential label::after {
  content: "(immer aktiviert)";
  color: #5d7f3a;
  font-weight: 600;
  font-size: 0.93rem;
  margin-left: 10px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .btn-close {
  background: #d6a252;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 8px 22px;
  border-radius: 11px 14px 16px 19px / 16px 16px 12px 20px;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(214,162,82,0.06);
  transition: background 0.12s, color 0.13s;
}
.cookie-modal .btn-close:hover, .cookie-modal .btn-close:focus {
  background: #ad7c2d;
  color: #fff;
}

/* --- Animations, Transitions, Accessibility --- */
.btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal .btn-close {
  outline: none;
}
.btn-primary:focus-visible, .btn-secondary:focus-visible, .cookie-banner button:focus-visible, .cookie-modal .btn-close:focus-visible {
  outline: 2px solid #5d7f3a;
  outline-offset: 3px;
}
.mobile-nav a:focus-visible, .main-nav a:focus-visible {
  outline: 2px solid #d6a252;
  outline-offset: 2px;
}

/* ---- ORGANIC SHAPE DECORATION FOR SECTIONS ---- */
.section, .legal-section, .hero-section, .features-section, .about-section, .about-preview, .testimonials-section, .services-preview, .services-section, .projects-section, .process-section, .faq-section, .cta-section, .contact-section, .visit-section, .blog-overview-section, .thank-you-section {
  /* Decorative organic shadows on main desktop only */
  position: relative;
  overflow: hidden;
}
.section::before, .legal-section::before, .hero-section::before, .features-section::before, .about-section::before, .about-preview::before, .testimonials-section::before, .services-preview::before, .services-section::before, .projects-section::before, .process-section::before, .faq-section::before, .cta-section::before, .contact-section::before, .visit-section::before, .blog-overview-section::before, .thank-you-section::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -38px;
  width: 200px;
  height: 120px;
  background: rgba(214,162,82,0.12);
  border-radius: 42% 58% 67% 33% / 53% 60% 40% 47%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 600px) {
  .section::before, .legal-section::before, .hero-section::before, .features-section::before, .about-section::before, .about-preview::before, .testimonials-section::before, .services-preview::before, .services-section::before, .projects-section::before, .process-section::before, .faq-section::before, .cta-section::before, .contact-section::before, .visit-section::before, .blog-overview-section::before, .thank-you-section::before {
    display: none;
  }
}

/* --- RESPONSIVE TWEAKS FOR FLEX LAYOUTS --- */
@media (max-width: 980px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
  .feature-grid, .service-list, .project-list, .card-container, .blog-list {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 800px) {
  .footer-contact {
    font-size: 0.93rem;
  }
  .footer-logo {
    width: 38px;
    height: 38px;
  }
  .footer-bottom {
    font-size: 0.86rem;
  }
}

/*--- OVERRIDE to prevent unwanted spacing ---*/
.card:last-child, .feature-item:last-child, .service-item:last-child, .project-item:last-child, .testimonial-card:last-child {
  margin-bottom: 0 !important;
}

/* ==== END CSS - Fervent Baukunst "Nature Organic" Theme ==== */
