/* =============================
   CSS RESET & NORMALIZATION
   =============================*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, form, fieldset, legend,
button, input, textarea, figure, figcaption, blockquote {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-style: inherit;
}
ul, ol {
  list-style-position: inside;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}
button {
  background: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

body {
  background: #F7F5ED;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3524;
  line-height: 1.6;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #234063;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  color: #567c36;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, a, span, label, input, textarea {
  font-size: 1rem;
}
p, li, span {
  color: #2C3524;
}
strong {
  font-weight: 700;
  color: #567c36;
}

/* =============================
   GENERAL CONTAINERS & LAYOUTS
   =============================*/
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(80, 100, 70, 0.05);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: none;
}
.text-section ul, .text-section ol, .content-wrapper ul, .content-wrapper ol {
  padding-left: 18px;
  margin: 8px 0 4px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section li {
  position: relative;
  padding-left: 14px;
}
.text-section li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #82a66f;
  font-size: 1.4em;
  top: 0.04em;
  line-height: 1;
}

/* =============================
   NATURE ORGANIC COLORS
   =============================*/
:root {
  --primary: #234063;
  --secondary: #D0A85A;
  --accent: #F7F5ED;
  --green: #567c36;
  --moss: #82a66f;
  --sand: #f1e6c7;
  --brown: #a17b46;
  --beige: #ede9de;
  --earth: #7c6e50;
  --shadow: rgba(80,100,70,0.12);
}

/* =============================
   NAVIGATION
   =============================*/
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 0;
  position: relative;
}
.main-nav > a img {
  height: 48px;
  border-radius: 38% 62% 74% 26% / 46% 55% 45% 54%; /* organic */
  background: var(--accent);
  transition: box-shadow 0.2s;
}
.main-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav a, .main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 16px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav li a:hover, .main-nav li a:focus {
  background: var(--moss);
  color: #fff;
}
.cta-btn.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(96deg, var(--green) 60%, var(--secondary) 100%);
  color: #fff;
  border-radius: 32px 20px 40px 28px / 35px 28px 36px 18px;
  font-weight: 700;
  font-size: 1.1em;
  padding: 12px 30px;
  margin-left: 18px;
  box-shadow: 0 2px 10px 0 var(--shadow);
  transition: background 0.23s, box-shadow 0.23s, transform 0.15s;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(100deg, #456c38 30%, #bd9343 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px 0 var(--shadow);
}
.cta-link {
  color: var(--green);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  transition: color 0.18s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--primary);
  text-decoration: none;
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: var(--green);
  color: #fff;
  border-radius: 28px;
  font-size: 2em;
  padding: 5px 15px 6px 15px;
  margin-left: auto;
  z-index: 150;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(40, 60, 40, 0.88);
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(0.39,0.575,0.565,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--green);
  color: #fff;
  border-radius: 60px;
  font-size: 2.1em;
  margin: 22px 30px 0 0;
  padding: 1px 14px 9px 12px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 30px 32px 0 32px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3em;
  color: #fff;
  padding: 12px 2px;
  border-radius: 14px;
  width: 100%;
  transition: background 0.17s, color 0.17s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--moss);
  color: #234063;
}

@media (max-width: 1080px) {
  .container {
    max-width: 93vw;
  }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 17px; }
}
@media (max-width: 820px) {
  .main-nav ul { gap: 10px; font-size: 0.96em; }
  .cta-btn.primary { padding: 8px 20px; font-size: 1em; margin-left: 6px; }
}
@media (max-width: 700px) {
  .main-nav ul { gap: 5px; font-size: 0.9em; }
}
@media (max-width: 740px) {
  .main-nav ul, .main-nav .cta-btn.primary { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =============================
   HERO SECTIONS
   =============================*/
.hero {
  background: linear-gradient(to bottom right, #dbe7cd 0%, #f7f5ed 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 60px 0 46px 0;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
}
.hero h1 {
  color: #456c38;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  font-size: 1.3em;
  color: #567c36;
  max-width: 540px;
  margin-bottom: 14px;
}

/* =============================
   FEATURES AND GRIDS
   =============================*/
.features, .services-overview {
  background: linear-gradient(97deg, #f5efd7 72%, #e1ebd0 100%);
  border-radius: 38px;
  box-shadow: 0 2px 18px 0 var(--shadow);
}
.features .feature-grid, .services-overview .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.features .feature-grid > div, .services-overview .feature-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  background: #fff;
  border-radius: 20px 23px 28px 17px / 16px 29px 24px 22px;
  box-shadow: 0 2px 8px 0 var(--shadow);
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: transform 0.17s, box-shadow 0.17s;
}
.features .feature-grid > div:hover, .services-overview .feature-grid > div:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 4px 20px 0 var(--shadow);
}
.features .feature-grid img, .services-overview .feature-grid img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: #e7eadb;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px 0 var(--shadow);
}
.features .feature-grid h3, .services-overview .feature-grid h3 {
  font-size: 1.15em;
  color: #456c38;
  margin-bottom: 3px;
}
.features .feature-grid p, .services-overview .feature-grid p {
  font-size: 1em;
  color: #344638;
}
.feature-item { 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .features .feature-grid > div, .services-overview .feature-grid > div {flex: 1 1 45%;}
}
@media (max-width: 700px) {
  .features .feature-grid, .services-overview .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features .feature-grid > div, .services-overview .feature-grid > div {
    width: 100%;
    min-width: 0;
  }
}

/* =============================
   CARDS & SPECIAL CONTAINERS
   =============================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px 28px 18px 24px/27px 31px 23px 19px;
  box-shadow: 0 2px 10px 0 var(--shadow);
  position: relative;
  padding: 24px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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: 900px) {
  .content-grid, .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {gap: 13px;}
}

/* =============================
   TESTIMONIALS
   =============================*/
.testimonials {
  background: linear-gradient(96deg,#eaf0e2 55%, #f4edd7 100%);
  border-radius: 32px;
  padding-bottom: 20px;
}
.testimonials h2 {
  color: #567c36;
  letter-spacing: -0.02em;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 24px 32px 18px 20px/20px 30px 22px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 var(--shadow);
  flex-wrap: wrap;
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card p {
  color: #234063;
  font-size: 1.10em;
  font-weight: 500;
  flex: 1 1 55%;
}
.testimonial-card span {
  font-size: 0.98em;
  font-weight: 600;
  color: #82a66f;
  flex: 1 1 28%;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 var(--shadow);
  transform: scale(1.018);
}

/* =============================
   FORMS & INPUTS
   =============================*/
form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
label {
  font-weight: 500;
  margin-bottom: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #567c36;
}
input[type="text"], input[type="email"], textarea {
  background: #f6f5ef;
  border: 1.5px solid #ddeac1;
  border-radius: 12px 24px 12px 24px/19px 12px 22px 16px;
  padding: 12px 14px;
  font-size: 1.05em;
  box-shadow: 0 2px 5px 0 var(--shadow);
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus {
  border-color: #456c38;
  box-shadow: 0 2px 14px 0 var(--shadow);
}
button[type="submit"], button.cta-btn.primary {
  background: linear-gradient(97deg, var(--green) 69%, var(--secondary) 100%);
  color: #fff;
  border-radius: 34px 24px 38px 18px / 20px 32px 18px 37px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13em;
  padding: 10px 26px;
  margin-top: 10px;
  transition: background 0.19s, transform 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 12px 0 var(--shadow);
}
button[type="submit"]:hover, button.cta-btn.primary:hover, button[type="submit"]:focus {
  background: linear-gradient(105deg, #345d27 60%, #b89547 100%);
  transform: scale(1.045);
}
input[type="submit"] { cursor: pointer; }

/* =============================
   FOOTER
   =============================*/
footer {
  background: #ede9de;
  padding: 0 0 0 0;
  box-shadow: 0 -2px 12px 0 var(--shadow);
  border-radius: 30px 30px 0 0 / 21px 31px 0 0;
}
.footer-links {
  margin-bottom: 0;
  padding: 36px 0 24px 0;
}
.footer-links .container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-links .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.footer-links nav {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98em;
  color: #234063;
  margin-bottom: 8px;
  margin-top: 0;
  flex-shrink: 0;
}
.footer-links nav a {
  color: #234063;
  margin: 0 3px;
  padding: 3px 5px;
  border-radius: 8px;
  transition: background 0.17s;
}
.footer-links nav a:hover, .footer-links nav a:focus {
  background: #e1ebd0;
}
.footer-links .text-section {
  color: #2C3524;
  font-size: 0.96em;
  margin-bottom: 0;
}
.footer-links .branding {
  max-width: 330px;
  color: #7c6e50;
  font-size: 0.94em;
}
.footer-links .social-links {
  margin-top: 5px;
  color: #a17b46;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .footer-links .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =============================
   TRUST SIGNALS & INFO BOXES
   =============================*/
.trust-signals {
  padding: 13px 18px;
  border-radius: 19px 31px 12px 23px/23px 16px 23px 19px;
  background: var(--moss);
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  margin-top: 8px;
}
.trust-signals strong { color: #fbe064; }
@media (max-width: 650px) {
  .trust-signals {
    font-size: 0.96em;
    padding: 10px 8px;
  }
}

/* =============================
   FAQ / DL Styles
   =============================*/
dl {
  margin-top: 10px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #234063;
  margin-top: 17px;
}
dd {
  margin-left: 12px;
  margin-bottom: 5px;
  color: #567c36;
}

/* =============================
   TYPOGRAPHY SCALE RESPONSIVE
   =============================*/
@media (max-width: 540px) {
  h1 {font-size: 2em;}
  h2 {font-size: 1.35em;}
  h3 {font-size: 1.11em;}
  body { font-size: 0.95em;}
}

/* =============================
   SPACING AND CONSISTENCY
   =============================*/
section, .section, .card, .card-container > * {
  margin-bottom: 20px;
}
.card-container, .content-grid, .features .feature-grid, .services-overview .feature-grid {
  gap: 20px;
}
@media (max-width: 540px) {
  section, .section, .card, .card-container > * {
    margin-bottom: 14px;
  }
  .container { padding: 0 6px; }
}

/* =============================
   ANIMATIONS & MICROINTERACTIONS
   =============================*/
.card, .testimonial-card, .features .feature-grid > div, .services-overview .feature-grid > div, .cta-btn.primary {
  transition: box-shadow 0.14s, transform 0.14s;
}
.card:hover, .features .feature-grid > div:hover, .services-overview .feature-grid > div:hover {
  box-shadow: 0 6px 20px 0 var(--shadow);
  transform: scale(1.027);
}
.cta-link, a {
  transition: color 0.16s, background 0.14s;
}
a:active, .cta-link:active {
  color: var(--green);
}

/* =============================
   ORGANIC SHAPES (decorative)
   =============================*/
/* For any decorative organic blobs, bg shapes, use only for background or ::before/::after; positioning is not for content */

/* =============================
   COOKIE CONSENT BANNER
   =============================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fffdeb;
  color: #234063;
  box-shadow: 0 -3px 30px 0 rgba(34, 64, 99,0.12);
  border-radius: 24px 24px 0 0/40px 44px 0 0;
  padding: 22px 18px 18px 18px;
  font-size: 1.08em;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.46s cubic-bezier(0.6,0,0.3,1);
  box-sizing: border-box;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 25px 22px 16px 23px / 18px 26px 22px 10px;
  border: none;
  font-weight: 600;
  font-size: 1em;
  padding: 9px 22px;
  margin-right: 0;
  margin-top: 0;
  box-shadow: 0 1px 7px 0 var(--shadow);
  background: var(--green);
  color: #fff;
  transition: background 0.18s, color 0.17s, transform 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.063);
}
.cookie-banner button.settings {
  background: var(--secondary);
  color: #234063;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #ffe5a6;
  color: var(--primary);
}
/* Hide banner */
.cookie-banner.hide {
  display: none;
}

/* =============================
   COOKIE SETTINGS MODAL
   =============================*/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 12000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60,80,60,0.23);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.36s cubic-bezier(0.5,0.6,0.4,1);
}
@keyframes fadeIn { from{ opacity:0;} to {opacity:1;}}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fffffb;
  border-radius: 32px 32px 24px 24px/40px 40px 13px 13px;
  box-shadow: 0 4px 28px 0 rgba(34, 64, 99,0.17);
  padding: 30px 32px 18px 32px;
  width: 95vw;
  max-width: 430px;
  color: #234063;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  margin-bottom: 6px;
  color: #456c38;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: #f7f5ed;
  border-radius: 16px;
  padding: 8px 13px;
}
.cookie-option label {
  color: #234063;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
}
.cookie-option input[type="checkbox"]:not(:disabled) {
  accent-color: var(--green);
  width: 18px; height: 18px;
}
.cookie-option input[type="checkbox"]:disabled {
  accent-color: #d2e3b7;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  background: var(--secondary);
  color: #234063;
  border-radius: 18px;
  padding: 5px 16px;
  align-self: flex-end;
  font-weight: 600;
  font-size: 1.07em;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #ffe5a6;
  color: var(--primary);
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 14px 7px 10px 7px;
    border-radius: 24px 18px 18px 18px/30px 30px 14px 14px;
  }
}

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

/* =============================
   OVERRIDES FOR <ul>, <ol> (esp. in features)
   =============================*/
.features ul, .features li,
.services-overview ul, .services-overview li,
.text-section ul, .text-section li
{ list-style-type: none; padding-left: 0; margin-left: 0; }
.features ul, .services-overview ul, .text-section ul {
  gap: 16px;
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
.features li, .services-overview li, .text-section li {
  background: #f1e6c7;
  border-radius: 16px;
  padding: 13px 22px 12px 16px;
  color: #234063;
  font-size: 1.08em;
  line-height: 1.56em;
  margin-bottom: 8px;
  position: relative;
}
.features li:before, .services-overview li:before, .text-section li:before {
  content: '';
}

/* =============================
   NEWSLETTER
   =============================*/
.newsletter {
  background: #e6eed8;
  border-radius: 30px;
  box-shadow: 0 2px 10px 0 var(--shadow);
  margin-bottom: 48px;
}
.newsletter h2 {
  color: #456c38;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 12px;
  align-items: center;
  margin-top: 12px;
}
.newsletter input[type="email"] {
  width: 260px;
  min-width: 160px;
}
@media (max-width: 600px) {
  .newsletter form {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .newsletter input[type="email"] { width: 100%; }
}

/* =============================
   RESPONSIVE (Mobile First)
   =============================*/
@media (max-width: 540px) {
  header, .main-nav, .container {
    padding-left: 0!important;
    padding-right: 0!important;
    min-width: 0!important;
  }
  .hero { padding: 32px 0 25px 0; }
  .section { padding: 20px 5px; margin-bottom: 28px; }
  .features, .services-overview { border-radius: 17px; }
}

@media (max-width: 500px) {
  .footer-links, .newsletter {
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer-links .content-wrapper {
    gap: 10px;
  }
}

/* =============================
   PRINT STYLES
   =============================*/
@media print {
  header, nav, .main-nav, .cookie-banner, .mobile-menu {
    display:none !important;
  }
  footer {
    background: #fff !important;
    box-shadow: none !important;
  }
  body, .container {
    background: #fff !important;
    color: #000 !important;
  }
}
