/* 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,
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,
main,
menu,
nav,
output,
ruby,
section,
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #f5f4ef;
  color: #354134;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
a {
  color: #205081;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #377f3e;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: bold;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --primary: #205081;
  --secondary: #f5f7fa;
  --accent: #F6B001;
  --earth-green: #377f3e;
  --leaf: #72a33a;
  --clay: #a38550;
  --earth-brown: #705d44;
  --cloud: #ffffff;
  --soil: #e8e5df;
  --text-dark: #354134;
  --text-light: #f7faf4;
  --card-bg: #fffced;
  --shadow: 0 2px 12px rgba(55, 127, 62, 0.09), 0 1.5px 0px 0px #e0dccf;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205081;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.15rem; }
.subheadline {
  font-size: 1.15rem;
  color: var(--earth-green);
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Utilities and structure */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #f6f7f4;
  border-bottom: 2px solid #efede6;
  position: relative;
  z-index: 1000;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  padding: 0 20px;
  min-height: 65px;
}
.logo img {
  height: 46px;
  width: auto;
  margin-right: 18px;
  filter: brightness(0.95) saturate(1.2);
}
nav a {
  color: #205081;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
nav a.cta {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
  padding: 10px 22px;
  margin-left: 18px;
  border-radius: 24px 14px / 17px 22px;
  box-shadow: 0 2px 8px rgba(246, 176, 1, 0.1);
  letter-spacing: 0.03em;
}
nav a.cta:hover,
nav a.cta:focus {
  background: #fed656;
  color: var(--primary);
}
nav a:hover, nav a:focus {
  background: var(--soil);
  color: var(--earth-green);
}

/* BURGER MENU - only shows on mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--earth-green);
  color: var(--cloud);
  border: none;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 6px 16px;
  margin-right: 14px;
  cursor: pointer;
  z-index: 1200;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 1020px) {
  nav {
    gap: 16px;
    font-size: 0.96rem;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 10px;
    font-size: 0.93rem;
  }
  nav a.cta {
    padding: 9px 16px;
    margin-left: 8px;
    font-size: 1rem;
  }
}
@media (max-width: 820px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE NAV OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.98);
  height: 100vh;
  width: 100vw;
  z-index: 2000;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  box-shadow: 3px 0 20px rgba(66, 86, 44, 0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  align-self: end;
  margin: 24px 20px 0 0;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 42px 0 0 34px;
  width: 75vw;
  max-width: 380px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--earth-brown);
  background: none;
  padding: 12px 6px;
  border-radius: 18px 9px 18px 9px/12px 18px 10px 20px;
  min-width: 120px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--leaf);
  color: #fff;
}
@media (min-width: 821px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN SECTION & FLEX LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 18px;
}
.content-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: stretch;
}
.feature-grid {
  gap: 28px;
  margin-top: 24px;
}
.content-grid {
  gap: 22px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 22px 18px 22px 18px/16px 26px 22px 17px;
  box-shadow: var(--shadow);
  min-width: 275px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 32px rgba(114, 163, 58, 0.14), 0 2.5px 0px 0px #cdc7b6;
  transform: translateY(-3px) scale(1.018);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffecd;
  border-radius: 20px 12px 20px 15px/16px 20px 18px 19px;
  box-shadow: 0 4px 24px rgba(55, 127, 62, 0.10), 0 1.5px 0px #f0efe2;
  min-width: 270px;
  max-width: 360px;
  flex: 1 1 320px;
  color: #253420;
  font-size: 1.06rem;
  transition: box-shadow 0.17s, background 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 36px rgba(246, 176, 1, 0.13), 0 3px 0px #ede7d2;
  background: #fdf8be;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--earth-green);
  font-size: 0.98em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: 21px 16px 18px 23px/19px 18px 16px 20px;
  box-shadow: var(--shadow);
  padding: 20px;
  min-width: 230px;
  flex: 1 1 230px;
  transition: box-shadow 0.12s, transform 0.13s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--soil);
  border-radius: 14px 8px 18px 12px / 13px 7px 9px 9px;
  padding: 4px;
  margin-bottom: 2px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 4px 26px rgba(55,127,62,0.11), 0 2px 0px #e2e9c9;
  transform: translateY(-2px) scale(1.03);
}

/* PRICING PAGE */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 28px;
  margin-bottom: 24px;
}
.pricing-plan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: var(--card-bg);
  border-radius: 20px 13px 16px 22px/12px 21px 13px 21px;
  box-shadow: var(--shadow);
  padding: 22px 18px 19px 18px;
  min-width: 220px;
  flex: 1 1 200px;
  transition: box-shadow 0.14s, transform 0.15s;
}
.pricing-plan img {
  width: 44px;
  height: 44px;
  background: var(--soil);
  border-radius: 13px 8px 11px 8px / 8px 9px 8px 10px;
  margin: 0 0 12px 0;
}
.pricing-plan strong {
  color: var(--earth-green);
}
.pricing-plan span {
  font-size: 0.99rem;
  color: var(--clay);
  background: var(--soil);
  border-radius: 9px;
  padding: 3px 10px;
  margin-top: 3px;
}
.pricing-plan:hover, .pricing-plan:focus {
  box-shadow: 0 4px 32px rgba(246, 176, 1, 0.10), 0 1.5px 0px #ebd89b;
  transform: translateY(-2px) scale(1.022);
}

/* TEAM LISTS & ABOUT PAGE */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 13px;
}
.team-member {
  background: var(--card-bg);
  border-radius: 17px 12px 23px 13px / 8px 17px 14px 20px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  min-width: 200px;
  flex: 1 1 180px;
  font-size: 1.03rem;
}
.team-member strong {
  color: var(--primary);
}

/* FAQ */
.faq-list {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}
.faq-list li {
  padding: 15px 0 15px 28px;
  border-left: 5px solid var(--earth-green);
  background: var(--soil);
  border-radius: 13px 18px 13px 18px/15px 10px 14px 18px;
  margin-bottom: 18px;
  color: #376638;
  line-height: 1.5;
}
.faq-list li strong {
  color: var(--primary);
  font-weight: 700;
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.step-list li {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 17px 13px 17px 13px/12px 17px 21px 14px;
  flex: 1 1 260px;
  min-width: 220px;
  padding: 20px 14px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.step-list img {
  width: 44px; height: 44px;
  background: var(--soil);
  border-radius: 9px 12px 14px 11px/13px 9px 11px 10px;
}

/* CONTACT & MAP */
.contact-details,
.map-location {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--soil);
  border-radius: 12px 9px 15px 8px/7px 10px 11px 14px;
  padding: 10px 14px;
  font-size: 1.05em;
}
.contact-details strong {
  color: var(--earth-green);
}
.map-location h3 {
  margin-bottom: 6px;
  color: var(--primary);
}

/* BUTTONS & CTAS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--accent);
  color: #1b426a;
  padding: 13px 28px;
  border-radius: 25px 20px / 16px 34px;
  min-width: 140px;
  margin: 24px 0 0 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(246, 176, 1, 0.10);
  text-shadow: 0 1px 2px #fffbc5;
  transition: background 0.12s, color 0.15s, box-shadow 0.16s, transform 0.17s;
}
.cta:hover,
.cta:focus {
  background: #fed656;
  color: var(--earth-green);
  box-shadow: 0 7px 28px rgba(246, 176, 1, 0.19);
  transform: translateY(-1.5px) scale(1.028);
}
button,
input[type="submit"] {
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 18px 13px/10px 17px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
button:hover,
input[type="submit"]:hover {
  background: var(--leaf);
  color: #fff;
}

/* FOOTER */
footer {
  background: #f6f7f4;
  color: var(--earth-brown);
  padding: 38px 20px 20px 20px;
  box-shadow: 0 -2px 20px rgba(55,127,62,0.04);
  margin-top: 64px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding-bottom: 12px;
}
footer nav a {
  color: #205081;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--earth-green);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 1rem;
  margin: 17px 0 12px 0;
  align-items: flex-start;
  justify-content: center;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer img {
  height: 19px;
  width: 19px;
  margin-right: 2px;
  filter: brightness(0.82);
}
footer > div:last-child {
  margin-top: 18px;
  text-align: center;
  color: #845522;
  font-size: 0.98em;
  letter-spacing: 0.02em;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #e0e4cc;
  color: #253420;
  padding: 18px 24px;
  z-index: 3000;
  box-shadow: 0 -2px 32px rgba(55,127,62,0.13);
  transition: transform 0.38s cubic-bezier(0.56,0.17,0.89,0.29);
  transform: translateY(100%);
  font-size: 1.09rem;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-message {
  max-width: 440px;
  flex: 1 1 300px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  background: #377f3e;
  color: #fff;
  border: none;
  border-radius: 15px 11px 13px 10px/10px 10px 12px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 18px;
  transition: background 0.17s, color 0.13s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--accent);
  color: var(--earth-brown);
}
.cookie-banner button.settings {
  background: #f9e1a7;
  color: #205081;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%) scale(0.96);
  background: #fffef6;
  color: #2d321f;
  z-index: 3400;
  min-width: 330px;
  max-width: 96vw;
  min-height: 200px;
  border-radius: 18px 16px 24px 19px/19px 21px 13px 13px;
  box-shadow: 0 8px 40px rgba(55,127,62,0.21);
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  transition: transform 0.44s cubic-bezier(0.63,0.1,0.82,0.17);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h3 {
  color: var(--earth-green);
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1em;
  padding: 6px 0 12px 0;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e7ecd3;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  vertical-align: middle;
}
.cookie-modal .cookie-toggle:checked {
  background: #66b285;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle:checked::before {
  left: 19px;
}
.cookie-modal-buttons {
  margin-top: 16px;
  display: flex;
  gap: 15px;
}
.cookie-modal button {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 14px 12px 14px 10px/8px 12px 17px 9px;
  padding: 10px 22px;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #fed656;
  color: var(--earth-green);
}
.cookie-modal .close-modal {
  background: #f9e1a7;
  color: var(--primary);
  margin-left: auto;
  font-size: 1.2rem;
  padding: 4px 13px;
  border-radius: 50%;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #e8e5df;
  color: var(--earth-green);
}

/* RESPONSIVE FLEXBOX ADJUSTMENTS */
@media (max-width: 900px) {
  .feature-grid,
  .content-grid,
  .pricing-table,
  .team-list,
  .card-container,
  .testimonial-slider,
  .step-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 8px;
  }
  .feature-grid,
  .content-grid,
  .pricing-table,
  .team-list,
  .card-container,
  .testimonial-slider,
  .step-list {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  section {
    padding: 30px 0 0 0;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .card, .feature-item, .pricing-plan, .team-member, .testimonial-card, .step-list li {
    min-width: 0;
    width: 100%;
  }
  .footer-contact {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .cookie-modal {
    min-width: 200px;
    padding: 16px 10px 16px 10px;
  }
}

/* ORGANIC NATURE DECORATIVE SHAPES */
.card, .feature-item, .testimonial-card, .pricing-plan, .team-member, .step-list li, .faq-list li {
  border-radius: 18px 25px 14px 17px/22px 12px 17px 18px;
  box-shadow: var(--shadow);
  border: 1.5px solid #ece8df;
}

/* TRANSITIONS on hoverable elements */
.card, .feature-item, .testimonial-card, .pricing-plan, .cta, .team-member, .step-list li, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.16s, background 0.13s, transform 0.18s;
}

/* FORM ELEMENTS GENERIC STYLES */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5f4ef;
  border: 1.5px solid #adbfa4;
  padding: 9px 12px;
  border-radius: 8px 9px 8px 9px/7px 10px 7px 9px;
  font-size: 1rem;
  color: var(--primary);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--earth-green);
}

/* Z-INDEX FOR OVERLAYS */
.mobile-menu,
.cookie-banner,
.cookie-modal {
  z-index: 3200;
}

/* Hide cookie banner and modal when not visible */
.cookie-banner:not(.visible),
.cookie-modal:not(.visible) {
  display: none;
}

/* Miscellaneous spacing rules */
.card:not(:last-child),
.feature-item:not(:last-child),
.pricing-plan:not(:last-child),
.team-member:not(:last-child),
.step-list li:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* ORGANIC BACKGROUNDS FOR SECTIONS */
section:nth-of-type(even) {
  background: #f5f6ee;
}
section:nth-of-type(odd) {
  background: #fcfaf4;
}

/* Hide outline on mouse, show on keyboard only */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 1.5px;
}

/* Animations */
@keyframes fadeInUpNature {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
section,
.card, .feature-item, .pricing-plan, .team-member, .testimonial-card {
  animation: fadeInUpNature 0.6s cubic-bezier(0.5, 1, 0.89, 1) both;
}

/* Ensure all pages have enough white space */
main, .content-wrapper, .text-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* On very small screens */
@media (max-width: 430px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 13px 3vw;
    font-size: 0.95rem;
  }
  .cookie-banner-buttons {
    gap: 11px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 7px 3vw 14px 3vw;
    font-size: 0.98rem;
  }
}
