/* --------------------------------------------------
   CSS RESET & NORMALIZE (vintage_retro version)
-------------------------------------------------- */
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;
}

html {
  scroll-behavior: smooth;
}
body {
  background: #FFFAF3;
  color: #3e3935;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: #7C532C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #174B31;
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 1.5rem;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

:root {
  --primary: #174B31;
  --secondary: #5B9A68;
  --accent: #FFEFD9;
  --retro-mustard: #FFD977;
  --retro-orange: #FFB86B;
  --retro-brown: #7C532C;
  --retro-blue: #4986A2;
  --retro-red: #FF5650;
  --retro-bg: #FFFAF3;
  --card-bg: #FFF6EE;
  --text-dark: #3e3935;
  --heading-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Nunito', Arial, sans-serif;
}

/* --------------------------------------------------
   TYPOGRAPHY & VINTAGE FONTS
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-shadow: 1px 1px 0 #FFD977, 2px 2px 0 #FFEFD9;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #FFD977;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-shadow: 0.5px 0.5px 0 #FFEFD9;
}
h4, h5, h6 {
  margin-bottom: 8px;
  text-shadow: 0.5px 0.5px 0 #FFEFD9;
}
p, ul, ol {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-dark);
}
blockquote {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--retro-brown);
  background: var(--retro-mustard);
  border-left: 6px solid var(--retro-brown);
  padding: 18px 28px;
  margin-bottom: 12px;
  border-radius: 16px;
  box-shadow: 2px 2px 12px rgba(124, 83, 44, 0.09);
}

/* --------------------------------------------------
   CONTAINER & SPACING
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: var(--card-bg);
  box-shadow: 0 6px 32px 0 rgba(60, 44, 16, 0.08);
  border: 2px dashed #FFD977;
  position: relative;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 4px 24px 0 rgba(43, 30, 8, 0.09);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
a.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--retro-brown);
  letter-spacing: 0.04em;
  padding: 8px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  border-bottom: 2px solid var(--retro-orange);
  color: var(--secondary);
}
.cta-btn {
  background: linear-gradient(90deg, #FFD977 85%, #FFEFD9 100%);
  color: var(--primary);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  outline: none;
  border-radius: 99px;
  font-size: 1.1rem;
  padding: 12px 36px;
  box-shadow: 2px 2px 0 #FFEFD9, 4px 4px 0 #7C532C10;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.14s, transform 0.1s;
  text-shadow: 0.5px 0.5px #fff5;
  margin-left: 24px;
  display: inline-block;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #FFEFD9 85%, #FFD977 100%);
  color: var(--retro-brown);
  box-shadow: 4px 4px 0 #FFD977;
  transform: translateY(-2px) scale(1.03);
}

/* -------------------
   MOBILE BURGER MENU
--------------------- */
.mobile-menu-toggle {
  display: none;
  background: #FFD977;
  border: none;
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 99px;
  color: #7C532C;
  cursor: pointer;
  margin-left: 18px;
  z-index: 101;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-toggle:hover {
  background: #FFB86B;
  color: #174B31;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 239, 217, 0.97);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 32px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFEFD9;
  color: #7C532C;
  border: none;
  font-size: 2.2rem;
  font-family: var(--heading-font);
  border-radius: 50%;
  padding: 5px 20px;
  margin-bottom: 20px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
  z-index: 210;
}
.mobile-menu-close:hover {
  background: #FFB86B;
  color: #174B31;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 600;
  color: #7C532C;
  border-bottom: 2px solid transparent;
  padding: 12px 0 9px 0;
  transition: border-color 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  border-bottom: 2px solid var(--retro-orange);
  color: var(--primary);
}

/* Hide desktop nav on mobile and show burger */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 700px) {
  header .container {
    padding: 0 6px;
  }
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  background-color: var(--retro-mustard);
  background-image: repeating-linear-gradient(135deg, #FFEFD9, #FFEFD9 28px, #FFD977 30px, #FFD977 48px);
  border-bottom: 5px solid #7C532C20;
  padding: 48px 0 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 620px;
  text-align: center;
  margin: 0 auto;
}
.hero h1 {
  color: var(--retro-brown);
  font-family: var(--heading-font);
  text-shadow: 2px 2px 0 #fff8, 0.5px 1px #FFD977;
}
.hero p {
  margin: 0 auto 30px auto;
  font-family: var(--body-font);
  font-size: 1.18rem;
  color: var(--text-dark);
}
.hero .cta-btn {
  margin-top: 14px;
}

/* --------------------------------------------------
   FEATURE SECTIONS
-------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  background: var(--card-bg);
  border-radius: 28px;
  border: 2px solid #FFD977;
  box-shadow: 2px 4px 22px 0 #FFD97733;
  padding: 32px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  max-width: 330px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.12s;
}
.feature-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 3px;
}
.feature-item h3 {
  color: var(--retro-brown);
}
.feature-item:hover {
  box-shadow: 6px 10px 38px 0 #FFD97770, 2px 4px 16px 0 #7C532C17;
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    max-width: 100%;
  }
}

/* --------------------------------------------------
   SERVICE SUMMARIES
-------------------------------------------------- */
.service-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-summary {
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 1px 2px 10px 0 #FFD97720;
  border: 2px solid #FFB86B;
  padding: 28px 22px 20px 22px;
  flex: 1 1 230px;
  min-width: 200px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.13s;
  position: relative;
  font-size: 1rem;
}
.service-summary h3 {
  color: var(--retro-blue);
  margin-bottom: 10px;
}
.service-summary:hover {
  box-shadow: 4px 7px 18px 0 #4986A220;
  transform: translateY(-2px) scale(1.015);
}
.link-more {
  margin-top: 16px;
  display: inline-block;
  color: var(--retro-red);
  font-weight: 700;
  font-family: var(--heading-font);
  text-underline-offset: 2px;
  transition: color 0.18s;
  font-size: 1.01rem;
}
.link-more:hover {
  color: var(--primary);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .service-summaries {
    flex-direction: column;
    gap: 18px;
  }
}

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  background: #FFFAF3;
  border: 2px solid #FFD977;
  border-radius: 26px;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 12px 0 #4986A220, 2px 2px 0 #FFD97799;
  flex-wrap: wrap;
  transition: box-shadow 0.2s, transform 0.1s;
  color: #27221b;
  font-size: 1.07rem;
  justify-content: flex-start;
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: #4a3620;
  font-size: 1.18rem;
  font-family: var(--heading-font);
  font-weight: 500;
}
.testimonial-card .testimonial-author {
  font-family: var(--body-font);
  font-size: 1rem;
  font-style: italic;
  color: #7C532C;
  margin-left: 16px;
  text-shadow: 0.5px 0.5px 0 #FFD977;
}
.testimonial-card:hover {
  box-shadow: 6px 8px 30px 0 #FFB86B60, 2px 2px 0 #FFD97799;
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px;
  }
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #FFEFD9;
  border-top: 3px solid #FFD977;
  margin-top: 46px;
  padding: 36px 0 6px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 92px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: #7C532C;
}
.footer-brand img {
  width: 36px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--heading-font);
  color: #7C532C;
  white-space: nowrap;
}
.footer-nav a {
  color: #7C532C;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #52422b;
  font-size: 0.99rem;
  font-family: var(--body-font);
}
.footer-contact img {
  width: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
  }
}

/* --------------------------------------------------
   GENERAL FLEX CONTAINERS
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 2px 2px 18px 0 #FFD97738;
  padding: 26px 20px 20px 20px;
  border: 2px solid #FFD977;
  transition: box-shadow 0.18s, transform 0.1s;
}
.card:hover {
  box-shadow: 4px 7px 20px 0 #FFB86B41;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.faq-item {
  background: #FFF8ED;
  border: 1.8px dashed #FFD977;
  border-radius: 18px;
  padding: 18px 18px 16px 18px;
  font-size: 1rem;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 180px;
  box-shadow: 0px 2px 12px #FFD97720;
}
@media (max-width: 850px) {
  .faq-list {
    flex-direction: column;
    gap: 14px;
  }
  .faq-item {
    min-width: 100%;
  }
}

/* --------------------------------------------------
   CONTACT LIST
-------------------------------------------------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: #3e3935;
}
.contact-list img {
  width: 24px;
  margin-right: 6px;
}

/* --------------------------------------------------
   LEGAL/CONFIRMATION SECTIONS
-------------------------------------------------- */
.legal-section, .confirmation-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF8ED;
  border-radius: 32px;
  border: 2px dashed #FFEFD9;
  box-shadow: 2px 12px 32px 0 #FFD97722;
}

.legal-section h2 {
  color: var(--primary);
  margin-top: 20px;
}
.legal-section ul {
  margin-top: 8px;
  margin-bottom: 16px;
}
.legal-section a {
  color: var(--retro-blue);
}
.confirmation-section .cta-btn {
  margin-top: 28px;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER (FIXED BOTTOM)
-------------------------------------------------- */
.cookie-banner {
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF3DD;
  border-top: 3px solid #FFD977;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px 20px 26px;
  box-shadow: 0 -2px 24px #FFD97721;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-text {
  color: #473214;
  font-size: 1.09rem;
  font-family: var(--body-font);
  max-width: 520px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: var(--heading-font);
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 16px;
  border: 2px solid #FFD977;
  cursor: pointer;
  font-weight: 700;
  background: #FFD977;
  color: #7C532C;
  margin-right: 5px;
  box-shadow: 2px 2px 0 #fff4;
  transition: background 0.19s, color 0.19s, box-shadow 0.13s;
}
.cookie-btn.reject {
  background: #FFEFD9;
  color: #B3654D;
  border: 2px solid #FFB86B;
}
.cookie-btn.accept {
  background: #174B31;
  color: #FFF8ED;
  border: 2px solid #7C532C;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #FFB86B;
  color: #174B31;
  box-shadow: 4px 4px 0 #FFD97792;
}
.cookie-settings-btn {
  background: #FFEFD9;
  color: #7C532C;
  border: 2px solid #FFD977;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 12px;
    gap: 14px;
  }
  .cookie-banner-text {
    font-size: 0.98rem;
    max-width: 100%;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,232,196,0.85);
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-window {
  background: #FFF3DD;
  border-radius: 28px;
  box-shadow: 0 12px 28px #FFD97775;
  max-width: 430px;
  width: 92vw;
  padding: 34px 22px 24px 22px;
  border: 3px solid #FFD977;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: vintage-popup-in 0.5s cubic-bezier(.45,1.6,.55,1) 1;
}
@keyframes vintage-popup-in {
  0% { transform: scale(0.89) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0px); opacity: 1; }
}
.cookie-modal-window h2 {
  color: #7C532C;
  margin-bottom: 8px;
  font-size: 1.23rem;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-category-label {
  font-family: var(--heading-font);
  font-size: 1.07rem;
  color: #174B31;
  flex: 1 1 auto;
}
.cookie-category-toggle {
  accent-color: #7C532C;
  width: 24px; height: 24px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #B3654D;
  font-size: 2.1rem;
  padding: 2px 15px;
  border-radius: 99px;
  position: absolute;
  top: 18px;
  right: 9px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover {
  background: #FFD97733;
  color: #FF5650;
}
@media (max-width: 550px) {
  .cookie-modal-window {
    max-width: 98vw;
    padding: 22px 7px 16px 12px;
  }
}

/* --------------------------------------------------
   UTILITIES: BUTTONS, BADGES, ETC (RETRO STYLE)
-------------------------------------------------- */
.btn, .button {
  background: linear-gradient(90deg,#FFD977,#FFB86B);
  border: none;
  border-radius: 16px;
  color: #174B31;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 30px;
  cursor: pointer;
  box-shadow: 2px 2px 0 #FFEFD9;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s, transform 0.1s;
  margin-top: 12px;
  text-shadow: .5px .5px 0 #fff4;
}
.btn:hover, .button:hover {
  background: #FFB86B;
  color: #7C532C;
  box-shadow: 3px 3px 0 #FFD97766;
  transform: translateY(-1.5px) scale(1.03);
}

/* --------------------------------------------------
   RETRO/VINTAGE FLARE (PATTERNS, DECOS)
-------------------------------------------------- */
.section {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 56px, #FFEFD9 56px, #FFEFD9 70px);
  border: 2.5px dashed #FFD977;
}
.card, .service-summary, .feature-item, .faq-item {
  /* Slight speckles for retro paper */
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" viewBox="0 0 60 60" width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle fill="%23FFD977" cx="10" cy="6" r="0.7"/><circle fill="%23FFB86B" cx="23" cy="19" r="0.5"/><circle fill="%237C532C20" cx="38" cy="51" r="0.6"/><circle fill="%23FFD977" cx="57" cy="28" r="0.6"/></svg>');
  background-repeat: repeat;
}

/* Example visual retro divider */
.retro-divider {
  width: 4rem;
  height: 4px;
  background: repeating-linear-gradient(90deg, #FFD977, #FFD977 8px, #FFB86B 8px, #FFB86B 16px);
  border-radius: 3px;
  margin: 32px auto;
}

/* --------------------------------------------------
   MEDIA QUERIES - MOBILE FIRST
-------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 0 4px;
  }
  .section {
    padding: 26px 10px;
    border-radius: 20px;
    margin-bottom: 34px;
  }
  .card, .feature-item, .service-summary {
    padding: 18px 9px 13px 12px;
    border-radius: 15px;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  h3 {
    font-size: 1.02rem;
  }
  .hero {
    padding: 18px 0 10px 0;
  }
  .footer-nav {
    font-size: 0.91rem;
  }
}

/* --------------------------------------------------
   PRINT STYLES
-------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  body {
    color: #111;
    background: #fff;
  }
}

/* END OF STYLE.CSS */
