/* ================== 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,
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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
footer span {
  color: white !important;
}
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #f7faf7;
  color: #275240;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
*, *::before, *::after { box-sizing: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { vertical-align: middle; max-width: 100%; height: auto; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit; 
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
:focus { outline: 2px solid #668d2e; outline-offset: 2px; }

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

/* ================== COLORS & ROOTS ================== */
:root {
  --primary: #275240;
  --secondary: #668d2e;
  --accent: #e2e7e1;
  --white: #fff;
  --black: #181e10;
  --gray: #e8eee7;
  --danger: #ff4176;
  --warning: #ffd849;
  --info: #2ccafa;
  --apple: #8ff497;
}

/* ================== TYPOGRAPHY ================== */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
h4, h5, h6 {  font-family: 'Montserrat', 'Roboto', Arial, sans-serif; color: var(--primary); }
p, li, blockquote, span, label, input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}
strong { color: var(--secondary); font-weight: bolder; }
blockquote {
  background: var(--apple);
  border-left: 6px solid var(--secondary);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 12px;
  margin: 10px 0 16px 0;
  font-style: italic;
}

/* ================== CONTAINER ================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ================== HEADER ================== */
header {
  background: var(--accent);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 42;
  box-shadow: 0 2px 16px 0 rgba(39, 82, 64, 0.08);
}
header .container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img { height: 48px; transition: transform .3s cubic-bezier(.65,-0.2,.42,1.45); }
.logo:hover img { transform: rotate(-8deg) scale(1.08); }

/* ================== NAVIGATION ================== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 24px;
  flex: 1 1 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.06rem;
  color: var(--primary);
  transition: color .23s cubic-bezier(.63,.01,.22,1.13);
  position: relative;
  padding: 7px 2px;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--secondary);
  border-radius: 2px 2px 8px 8px;
  transition: width .28s;
  margin-top: 2px;
}
.main-nav a:hover,
.main-nav a:active,
.main-nav a:focus {
  color: var(--secondary);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 70%;
}

.cta-btn.primary {
  margin-left: 12px; 
}

.mobile-menu-toggle {
  display: none;
  margin-left: 8px;
  padding: 8px 14px;
  font-size: 2rem;
  background: var(--secondary);
  border-radius: 9px;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: box-shadow .18s, background .19s;
  z-index: 1102;
  box-shadow: 0 1px 3px 0 rgba(39,82,64,0.07);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
}

/* ================== MOBILE MENU ================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 0 0 24px 0 rgba(39,82,64, .13);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity .29s cubic-bezier(.86,.01,.21,1.24),
              transform .38s cubic-bezier(.63,.01,.22,1.13);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: var(--danger);
  color: var(--white);
  border-radius: 13px;
  border: none;
  margin: 28px 0 12px 22px;
  padding: 7px 18px;
  box-shadow: 0 2px 8px 0 rgba(39,82,64,0.11);
  cursor: pointer;
  transition: background .19s, transform .17s;
  z-index: 1551;
}
.mobile-menu-close:hover {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  margin-left: 26px;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 7px;
  padding: 10px 0 9px 0;
  transition: color .18s, background .15s;
  border-radius: 7px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  background: #d2dfa9;
}

/* ================== HERO SECTIONS ================== */
.hero {
  background: linear-gradient(112deg, var(--accent) 50%, #cfffcc 100%);
  border-bottom: 8px solid var(--apple);
  padding: 56px 0 32px 0;
  margin-bottom: 45px;
  animation: hero-pop 0.7s cubic-bezier(.7,-0.09,.41,1.26);
}
@keyframes hero-pop {
  0% { opacity: 0; transform: translateY(-30px) scale(.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 11px;
}

/* ================== CTA BUTTONS ================== */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  background: var(--secondary);
  color: var(--white);
  padding: 13px 38px;
  border-radius: 23px 18px 28px 16px;
  font-size: 1.15rem;
  margin-top: 18px;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 18px 0 rgba(39,82,64,.11);
  cursor: pointer;
  border: none;
  transition: background .21s, color .1s, box-shadow .18s, transform .15s;
  position: relative;
  z-index: 2;
}
.cta-btn.primary {
  background: var(--primary);
  color: var(--accent);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--warning);
  color: var(--primary);
  transform: scale(1.045) rotate(-1.5deg);
  box-shadow: 0 8px 24px 0 rgba(102,141,46,.15);
}

/* ================== SECTION SPACING ================== */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  main section {
    margin-bottom: 38px;
    padding: 25px 10px;
  }
}

/* =============== FLEXBOX Layout patterns =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(39,82,64,0.09);
  padding: 24px;
  transition: transform .21s, box-shadow .22s;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 300px;
}
.card:hover {
  transform: translateY(-8px) scale(1.027);
  box-shadow: 0 8px 32px 2px rgba(39,82,64,0.13);
}
.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: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray);
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(39,82,64,.07);
  font-size: 1.08rem;
  flex: 1 1 300px;
  border-left: 6px solid var(--secondary);
  min-height: 100px;
  position: relative;
  color: var(--primary);
}
.testimonial-card p {
  color: #1d3132;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #374949;
  font-weight: bold;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--accent);
  border-radius: 16px 24px 16px 16px;
  box-shadow: 0 2px 18px 0 rgba(102,141,46,.09);
  margin-bottom: 24px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow .22s, transform .14s;
}
.feature-item:hover {
  box-shadow: 0 7px 36px 0 rgba(102,141,46,.22);
  transform: scale(1.035);
}
.feature-item h3 {
  font-size: 1.12rem;
  color: var(--secondary);
  font-weight: bold;
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 5px;
  filter: drop-shadow(0 1px 4px rgba(102,141,46,.14));
  animation: popicon .7s cubic-bezier(.65,-0.2,.42,1.45);
}
@keyframes popicon {
  0% { transform: scale(.7) rotate(-20deg); opacity: 0; }
  85% { transform: scale(1.13) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}
/* =============== RESPONSIVE FLEX GRIDS =============== */
.feature-grid, .project-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .feature-grid, .project-grid, .team-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .project-grid, .team-list {
    flex-direction: column;
    gap: 14px;
  }
}

.team-list .team-member {
  background: var(--accent);
  border-radius: 18px 6px 18px 18px;
  box-shadow: 0 2px 14px 0 rgba(39,82,64,0.08);
  padding: 18px 20px 16px 20px;
  margin-bottom: 17px;
  min-width: 185px;
  flex: 1 1 210px;
  font-size: 1.03rem;
}

.project-item {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(102,141,46,0.07);
  padding: 24px;
  margin-bottom: 26px;
  flex: 1 1 320px;
  min-width: 270px;
  margin-right: 0;
  margin-left: 0;
  position: relative;
}

.article-teaser {
  background: var(--accent);
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(102,141,46,0.08);
  padding: 20px 22px;
  margin-bottom: 18px;
  transition: transform .15s, background .17s;
}
.article-teaser:hover {
  background: var(--apple);
  transform: scale(1.03);
}

/* ================== TIMELINE ================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.timeline li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 7px;
  color: var(--primary);
}
.timeline li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
  position: absolute;
  left: -2px;
  top: 8px;
}

/* ================== CARD CONTAINER ADJUSTMENTS ================== */
.services-detail .service-block, 
.oekohaues-services .service-block {
  background: var(--accent);
  border-radius: 17px 17px 25px 9px;
  box-shadow: 0 2px 15px 0 rgba(102,141,46,0.10);
  padding: 23px 24px;
  margin-bottom: 23px;
  position: relative;
  transition: box-shadow .22s, transform .14s;
}
.services-detail .service-block:hover, 
.oekohaues-services .service-block:hover {
  box-shadow: 0 12px 36px 0 rgba(39,82,64,0.16);
  transform: translateY(-4px) scale(1.016);
}
.services-detail .service-block h3 span {
  background: var(--secondary);
  color: var(--white);
  padding: 3px 11px;
  margin-left: 16px;
  border-radius: 13px;
  font-size: 1.01rem;
  vertical-align: middle;
  font-weight: normal;
}


/* ================== LISTS / ICONS ================== */
ul li, .contact-details ul li, .text-section ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
ul li img {
  width: 22px;
  height: 22px;
}
.text-section {
  margin: 18px 0 0 0;
}

/* ================== MAP SECTION ================== */
.map-placeholder {
  padding: 18px;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(102,141,46,0.09);
  color: #1d3132;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.map-placeholder img {
  width: 122px;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(39,82,64,0.10);
}

/* ================== SECTION / CTA-STYLES ================== */
.cta, .cta-newsletter {
  background: var(--apple);
  border-radius: 18px 18px 18px 30px;
  box-shadow: 0 1px 14px 0 rgba(102,141,46,0.09);
  margin-bottom: 42px;
}
.cta h2, .cta-newsletter h2 { margin-bottom: 8px; }
.cta p, .cta-newsletter p {
  color: #1d3132;
  margin-bottom: 20px;
}

/* ================== FOOTER ================== */
footer {
  background: var(--primary);
  padding: 32px 0 18px 0;
  color: var(--accent);
  font-size: 1rem;
  z-index: 3;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: .85;
  transition: color .17s, opacity .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--warning);
  opacity: 1;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-branding img {
  height: 32px;
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--accent);
  box-shadow: 0 -4px 20px 0 rgba(39,82,64,.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 35px;
  gap: 16px;
  z-index: 5002;
  animation: cookie-pop .6s cubic-bezier(.62,-0.05,.37,1.22);
}
@keyframes cookie-pop {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.04rem;
  color: var(--primary);
  margin-right: 18px;
  flex: 1 1 150px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--white);
  border-radius: 7px;
  padding: 9px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: none;
  transition: background .17s, color .14s, transform .15s;
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--warning);
  color: var(--primary);
  transform: scale(1.045);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(39, 82, 64, 0.33);
  z-index: 12001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .27s cubic-bezier(.56,.01,.22,1.12);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 48px 0 rgba(39,82,64,.18);
  padding: 36px 40px 29px 40px;
  max-width: 450px;
  width: 98vw;
  z-index: 12122;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-pop .5s cubic-bezier(.62,-0.15,.32,1.14);
}
@keyframes cookie-modal-pop {
  0% { transform: scale(.75); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: var(--gray);
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .21s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: left .19s cubic-bezier(.57,.01,.23,1.08);
}
.cookie-toggle:checked::before {
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: var(--danger);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
  transition: background .13s;
}
.cookie-modal .close-modal:hover {
  background: var(--primary);
}

/* ========== FORMS (if present in future) ========== */
input, textarea {
  background: var(--accent);
  border: 2px solid var(--gray);
  border-radius: 7px;
  padding: 11px 16px;
  font-size: 1.08rem;
  transition: border .17s;
  color: #153321;
  margin-bottom: 16px;
}
input:focus, textarea:focus {
  border-color: var(--secondary);
}

/* ======= PAGE-SPECIFIC: BLOG, LEGAL, NEWSLETTER ======= */
.blog-list .content-wrapper, .legal .content-wrapper, .cta-newsletter .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========== GENERIC UTILITIES ========== */
.hide { display: none !important; }
.text-section {
  padding: 0;
  margin-top: 20px;
  border-radius: 0;
  box-shadow: none;
  background: none;
}
blockquote {
  font-size: 1.1em;
  line-height: 1.6;
}

/* ========== ANIMATIONS & MICROINTERACTIONS ========== */
a, button, .cta-btn, .card, .feature-item, .services-detail .service-block, .oekohaues-services .service-block {
  transition: 
    background .15s cubic-bezier(.63,0,.22,1.18),
    color .16s cubic-bezier(.63,0,.22,1.18),
    box-shadow .16s cubic-bezier(.63,0,.22,1.18),
    transform .17s cubic-bezier(.63,0,.22,1.18);
}

/* Fun badge indicator for playful accent on selected cards */
.card .badge, .feature-item .badge {
  display: inline-block;
  background: var(--warning);
  color: var(--primary);
  padding: 2px 13px;
  border-radius: 14px 4px 12px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .93rem;
  font-weight: 700;
  margin-left: 8px;
  position: absolute;
  top: -13px;
  right: 16px;
  box-shadow: 0 2px 7px 0 rgba(255,216,73,.18);
  animation: badge-pop .7s;
}
@keyframes badge-pop {
  0% { transform: scale(.2) rotate(-18deg); opacity: 0; }
  80% { transform: scale(1.1) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

/* ========== PLAYFUL/ENERGETIC FONT ACCENTS (for headings) ========== */
h1, h2, .cta-btn, .main-nav a, .mobile-nav a {
  letter-spacing: .02em;
  font-variation-settings: 'wght' 900;
}
h1, h2 {
  text-shadow: 1px 3px 0 #e2e7e1, 1px 4.5px 11px #668d2e22;
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 1100px) {
  .container { max-width: 950px; }
  .main-nav { gap: 13px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 850px) {
  .main-nav { gap: 7.5px; font-size: .99rem; }
  .footer-nav { gap: 16px; font-size: 0.94rem; }
}
@media (max-width: 950px) {
  .feature-item, .card, .project-item, .team-member {
    min-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  header .container {
    justify-content: space-between;
    gap: 7px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cookie-banner {
    padding: 13px 13px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-nav {
    gap: 12px;
    font-size: .95rem;
  }
  .footer-branding img {
    height: 26px;
  }
    ul li,
    .contact-details ul li,
    .text-section ul li {
      flex-direction: column;
    }
}
@media (max-width: 520px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.13rem; }
  .cta-btn, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle {
    font-size: 1rem;
    padding: 8px 14px;
  }
  .testimonials, .about, .contact, .hero, .cta, .cta-newsletter, main section {
    padding: 14px 4px;
  }
}
/* ================== PRINT ================== */
@media print {
  header, footer, .cta-btn, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
