/* 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, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #FAFAFB;
  color: #16374F;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

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

html {
  font-size: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FAFAFB;
  min-height: 100vh;
  color: #16374F;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16374F;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.2rem;
  color: #4FA6D7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
}
p, li, dd {
  font-size: 1rem;
  color: #16374F;
  line-height: 1.6;
}
strong, b {
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* FLEXBOX UTILITY PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 26px;
  box-shadow: 0 2px 12px 0 rgba(79,166,215,0.07);
  transition: box-shadow 0.3s;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 4px 14px rgba(22,55,79,0.08), 0 1.5px 1.5px rgba(79,166,215,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-5px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(79,166,215,0.18);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F2F2F5;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(22,55,79,0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(79,166,215,0.07);
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 36px rgba(79,166,215,0.17);
  transform: translateY(-6px) scale(1.03) rotate(0.5deg);
}

/* HERO SECTIONS */
.hero {
  background: #4FA6D7;
  color: #FFF;
  border-radius: 0 0 36px 36px;
  padding: 60px 0 48px 0;
  position: relative;
  min-height: 260px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 3px 26px rgba(79,166,215,0.25);
}
.hero .content-wrapper {
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.hero h1,
.hero .subheadline {
  color: #FFF;
}
.hero .btn {
  margin-top: 18px;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 340px;
  height: 200px;
  background: rgba(255,255,255,0.13);
  z-index: 1;
  border-radius: 120px 65px 130px 200px;
  transform: rotate(-12deg);
  pointer-events: none;
}


/* NAV BAR & HEADER */
header {
  width: 100%;
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 16px rgba(79,166,215,0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #4FA6D7;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.16s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #F2F2F5;
  color: #16374F;
}
header .btn.btn-primary {
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 18px;
  background: #FFED34;
  color: #16374F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 1.5px 6px rgba(255,237,52,0.15);
  transition: background .18s, color .18s, box-shadow .22s;
  margin-left: 12px;
}
header .btn.btn-primary:hover, header .btn.btn-primary:focus {
  background: #FFEC00;
  color: #16374F;
  box-shadow: 0 4px 16px rgba(255,237,52,0.23);
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
.header .mobile-menu-toggle {
  display: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #4FA6D7;
  color: #FFF;
  font-size: 2rem;
  border: none;
  padding: 8px 14px;
  border-radius: 12px;
  margin-left: 18px;
  z-index: 101;
  transition: background 0.18s, color .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #16374F;
  color: #FFF700;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #16374F;
  color: #FFF;
  z-index: 120;
  transform: translateX(-105vw);
  transition: transform 0.34s cubic-bezier(.7,.17,.4,1.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px 18px 22px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FFF;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #FFED34;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 16px;
  border-radius: 15px;
  background: transparent;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4FA6D7;
  color: #FFED34;
}

@media (max-width:1024px) {
  header .container {
    gap: 6px;
  }
  header nav {
    gap: 10px;
  }
}
@media (max-width:900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  header img { height: 36px; }
}

/* BUTTONS & LINKS */
.btn,
.btn-primary {
  display: inline-block;
  border: none;
  background: #4FA6D7;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(22,55,79,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  cursor: pointer;
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus {
  background: #16374F;
  color: #FFED34;
  box-shadow: 0 8px 38px rgba(22,55,79,0.11);
  transform: scale(1.07);
}
.btn-link {
  color: #4FA6D7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color .19s, text-decoration .16s;
  text-decoration: underline dotted;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 2px 0;
}
.btn-link:hover, .btn-link:focus {
  color: #16374F;
  text-decoration: underline solid;
}

/* BLOG & CARD LISTS */
.feature-grid, .blog-post-list, .blog-post-grid, .review-teasers, .review-cards, .news-grid, .guide-grid, .team-members, .contact-info-blocks, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.blog-post-list article, .blog-post-grid article, .news-item, .review-card, .guide-card, .teaser, .team-member {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(79,166,215,0.07);
  padding: 22px 18px 22px 18px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  min-width: 203px;
}
.blog-post-list article:hover,
.blog-post-grid article:hover,
.news-item:hover, .review-card:hover, .guide-card:hover, .teaser:hover, .team-member:hover {
  box-shadow: 0 12px 40px rgba(79,166,215,0.15);
  transform: translateY(-7px) scale(1.03) rotate(-1.5deg);
}
.team-member {
  text-align: left;
  position: relative;
}

/* FORMS & FILTERS */
input[type="text"], input[type="email"], select {
  padding: 9px 15px;
  border-radius: 12px;
  border: 2px solid #4FA6D7;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 12px;
  margin-bottom: 8px;
  outline: none;
  background: #F2F2F5;
  transition: border-color .16s, box-shadow .19s;
}
input[type="text"]:focus, input[type="email"]:focus, select:focus {
  border-color: #16374F;
  box-shadow: 0 0 0 2px #4FA6D770;
}
select {
  appearance: none;
  background: #F2F2F5 url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%234FA6D7"><polygon points="6,10 12,16 18,10"/></svg>') no-repeat right 14px center/20px 14px;
  padding-right: 32px;
}
form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

/* CTA SECTIONS */
.cta-community, .cta-news, .cta-guides, .newsletter-cta {
  background: #FFF700;
  color: #16374F;
  border-radius: 32px;
  box-shadow: 0 4px 26px rgba(255, 237, 52, 0.11);
  padding: 43px 24px;
  margin-bottom: 60px;
}
.cta-community h2, .cta-news h2, .cta-guides h2, .newsletter-cta h2 {
  color: #16374F;
}
.cta-community .btn, .cta-news .btn, .cta-guides .btn, .newsletter-cta .btn {
  margin-top: 15px;
}

/* TESTIMONIALS & REVIEWS */
.testimonial-list, .review-teasers {
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F2F2F5;
  color: #16374F;
  border-radius: 18px;
  min-width: 240px;
  max-width: 400px;
  flex: 1 1 285px;
  box-shadow: 0 2px 10px rgba(22, 55, 79, 0.08);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #16374F;
}
.testimonial-meta {
  font-size: 1rem;
  color: #4FA6D7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.rating, .testimonial-meta span {
  color: #FFB400;
  letter-spacing: 1.5px;
  font-size: 1.15rem;
}

/* FOOTER */
footer {
  background: #16374F;
  color: #FFF;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px rgba(79,166,215,0.09);
}
footer .container {
  padding: 34px 20px 16px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-contact, .footer-menu, .footer-social {
  min-width: 135px;
  flex: 0 1 240px;
  margin-bottom: 20px;
}
.footer-contact h3 {
  font-size: 1.2rem;
  color: #FFFF00;
  margin-bottom: 8px;
}
.footer-contact p, .footer-menu a {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 7px;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-menu a {
  display: block;
  margin-bottom: 5px;
  color: #4FA6D7;
  transition: color .13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FFED34;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 2px #4FA6D760);
  transition: filter 0.12s, transform .13s;
}
.footer-social a:hover img {
  filter: brightness(1.2) drop-shadow(0 4px 8px #FFED3470);
  transform: scale(1.17) rotate(-9deg);
}

/* MISC & SPECIAL ELEMENTS */
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  margin-top: 18px;
}
dd {
  font-size: 1rem;
  color: #4FA6D7;
  margin-bottom: 16px;
}
hr {
  border: none;
  border-top: 2px dashed #4FA6D7;
  margin: 24px 0;
}
unordered-list, ol {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
}
li {
  margin-bottom: 9px;
}

/* CONTACT INFO BLOCKS */
.contact-info-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.contact-info-blocks > div {
  background: #FFF;
  border-radius: 17px;
  box-shadow: 0 2px 14px rgba(79,166,215,0.09);
  padding: 17px 13px 14px 13px;
  min-width: 175px;
  flex: 1 1 185px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.contact-info-blocks img {
  width: 22px; height: 22px; margin-bottom: 8px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  background: #F2F2F5;
  border-radius: 18px;
  padding: 13px 16px;
}
.map-embed img {
  width: 55px;
  height: 55px;
}
.map-embed em {
  color: #4FA6D7;
}

/* PRIVACY, COOKIES, RODO, TERMS */
.privacy-policy, .cookies-policy, .rodo-information, .terms-of-use {
  margin-bottom: 60px;
  padding: 45px 20px 36px 20px;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(22,55,79,0.07);
}
.privacy-policy h1, .cookies-policy h1, .rodo-information h1, .terms-of-use h1 {
  color: #4FA6D7;
  margin-bottom: 24px;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
@keyframes btnBounce {
  0% {transform: scale(1);}
  30% {transform: scale(1.13) rotate(-1.5deg);}
  60% {transform: scale(0.96) rotate(1deg);}
  100% {transform: scale(1);}
}
.btn:active, .btn-primary:active {
  animation: btnBounce 0.38s cubic-bezier(.62,-0.4,.67,1.42);
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(50px) scale(0.8) rotate(-8deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
.card, .testimonial-card, .feature-item {
  animation: floatIn 0.77s ease;
}

/* COOKIE CONSENT BANNER / MODAL */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 170;
  background: #FFF;
  color: #16374F;
  border-radius: 21px;
  box-shadow: 0 8px 48px #16374F30;
  padding: 23px 32px 23px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1rem;
  animation: floatIn 1s cubic-bezier(.12, .68, 0, 1.24);
}
.cookie-banner .btn-cookie {
  background: #4FA6D7;
  color: #FFF700;
  margin-right: 13px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 12px;
  padding: 8px 18px;
  box-shadow: 0 1.2px 6px #4FA6D755;
  transition: background .16s, color .16s, box-shadow .18s;
  border: none;
  cursor: pointer;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #FFED34;
  color: #16374F;
  box-shadow: 0 4px 18px #FFED3455;
}
.cookie-banner .btn-cookie-settings {
  background: #F2F2F5;
  color: #4FA6D7;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: #4FA6D7;
  color: #FFF700;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #16374F99;
  z-index: 190;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatIn 0.5s cubic-bezier(.44,-0.16,.37,1.23);
}
.cookie-modal {
  background: #FFF;
  color: #16374F;
  border-radius: 24px;
  width: 100%;
  max-width: 410px;
  box-shadow: 0 8px 46px #4FA6D777;
  padding: 34px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.cookie-modal h3 {
  color: #4FA6D7;
  font-size: 1.28rem;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1.01rem;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-modal .switch input { display:none; }
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #F2F2F5;
  border-radius: 18px;
  transition: background 0.2s;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #4FA6D7;
  transition: .2s;
  border-radius: 50%;
}
.cookie-modal .switch input:checked + .slider {
  background: #4FA6D7;
}
.cookie-modal .switch input:checked + .slider:before {
  background: #FFED34;
  transform: translateX(13px);
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  font-size: 1.47rem;
  background: none;
  border: none;
  color: #4FA6D7;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover { color: #FFED34; }
.cookie-modal .btn-cookie-save {
  margin-top: 24px;
  background: #4FA6D7;
  color: #FFF700;
  padding: 10px 24px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  align-self: flex-end;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .14s;
}
.cookie-modal .btn-cookie-save:hover { background: #FFED34; color: #16374F; }

/* THANK YOU PAGE */
.thank-you {
  background: #FFF700;
  width: 100%;
  border-radius: 32px;
  padding: 70px 18px 60px 18px;
  box-shadow: 0 8px 28px #FFED3433;
  margin-top: 42px;
}
.thank-you h1 { color: #16374F; font-size: 2.3rem; }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1080px) {
  .container { max-width: 99vw; }
  .feature-grid, .blog-post-list, .blog-post-grid, .review-teasers, .review-cards, .news-grid, .guide-grid, .team-members, .contact-info-blocks, .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 870px) {
  .footer-contact, .footer-menu, .footer-social {
    flex: 1 1 100%;
    margin-bottom: 17px;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .feature-item { min-width: 160px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px; padding-right: 6px;
  }
  .content-grid,.feature-grid,.blog-post-list,.blog-post-grid,.review-teasers,.review-cards,.news-grid,.guide-grid,.team-members,.contact-info-blocks,.testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    padding: 25px 6px;
    margin-bottom: 40px;
    border-radius: 17px;
  }
  .hero {
    padding-left: 5px; padding-right: 5px; min-height: 170px;
    border-radius: 0 0 19px 19px;
  }
  .cta-community,.cta-news,.cta-guides,.newsletter-cta {
    padding: 22px 6px;
    border-radius: 11px;
    margin-bottom: 38px;
  }
  .testimonial-card { min-width: unset; max-width: unset; }
  .feature-item, .blog-post-list article, .blog-post-grid article,
  .news-item, .review-card, .guide-card, .teaser, .team-member, .contact-info-blocks > div {
    min-width: unset;
    max-width: unset;
    flex: 1 1 90vw;
    padding: 14px 9px 14px 9px;
    font-size: 0.96rem;
  }
  .map-embed { gap: 7px; padding: 7px 9px; border-radius: 9px; }
  .map-embed img { width: 34px; height: 34px; }
}
@media (max-width: 530px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .subheadline { font-size: 1rem; }
  .cookie-banner {
    left: 2vw; right: 2vw; padding: 11px 7px; flex-direction: column; gap: 13px;
  }
  .cookie-modal { padding: 17px 7px 13px 7px; }
}
