/* ------------------------ RESET & NORMALIZE ----------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #f8f8fa;
  color: #1a1a1a;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.17;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #111;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-top: 0;
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 1.25em;
}
ul {
  list-style: disc inside;
}
li {
  margin-bottom: 8px;
}
a {
  color: #183152;
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
  word-break: break-word;
}
a:focus, a:hover {
  color: #186447;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #e0e2e5;
  padding: 8px 12px;
  background: #fff;
  color: #212121;
  transition: border 0.2s, box-shadow 0.2s;
}
button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #183152;
  outline-offset: 2px;
}

/* ---------------------- VARIABLES (with fallback) ------------------- */
:root {
  --color-primary: #111;
  --color-secondary: #fff;
  --color-mid: #e6e6e6;
  --color-bg: #f5f8fa;
  --color-accent: #1AD285;
  --color-dark: #1a1a1a;
  --color-gray-50: #f7f8fb;
  --color-gray-100: #ececec;
  --color-gray-300: #dddddd;
  --color-gray-700: #333;
  --color-gray-900: #111;
  --color-brand: #183152;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --shadow-soft: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-card: 0 6px 32px rgba(24,49,82,0.08);
  --radius-lg: 18px;
  --radius-md: 8px;
}

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

/* ------------------- HEADER & NAVIGATION --------------------------- */
header {
  background: var(--color-secondary, #fff);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 50;
}
header .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
  height: 44px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: auto;
  margin-left: 8px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus, .mobile-nav a:active {
  color: #fff;
  background: #111;
}
.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 12px 28px;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  transform: translateY(0);
  outline: none;
}
.cta-button:focus, .cta-button:hover {
  background: #222;
  color: var(--color-accent, #1AD285);
  box-shadow: 0 4px 12px rgba(24,49,82,0.13);
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
}
.cta-button.secondary {
  background: #fff;
  color: #111;
  border: 2px solid #222;
  box-shadow: none;
}
.cta-button.secondary:hover{
  background: #f0f0f3;
  color: #111;
  border-color: #222;
}

/* Hamburger menu (mobile only) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #183152;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 6px 12px;
  min-width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ececec;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 24px 22px 0 0;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #222;
}
.mobile-nav {
  width: 100%;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 32px;
  padding-right: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  width: 100%;
  transition: color 0.17s, background 0.17s;
  border-radius: 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent, #1AD285);
  background: rgba(255,255,255,0.04);
}

/* Show/hide nav elements based on screen size */
@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --------------------------- FOOTER --------------------------------- */
footer {
  background: #18191b;
  color: #fff;
  padding: 44px 0 0 0;
}
.footer-nav {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
}
.footer-nav a {
  color: #cecece;
  font-size: 1rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color 0.18s;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent, #1AD285);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: #bdbdbd;
  padding-bottom: 22px;
}

/* --------------------------- SECTIONS ------------------------------- */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
section:only-child, section:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section,
  section {
    padding: 28px 8px 28px 8px;
    margin-bottom: 36px;
  }
}

/* --------------------------- HERO/HEADERS --------------------------- */
.hero-section, .about-hero, .services-hero, .process-hero, .testimonials-hero, .faq-hero, .contact-hero, .thank-you {
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  text-align: left;
}
.hero-section .content-wrapper,
.about-hero .content-wrapper,
.services-hero .content-wrapper,
.process-hero .content-wrapper,
.testimonials-hero .content-wrapper,
.faq-hero .content-wrapper,
.contact-hero .content-wrapper,
.thank-you .content-wrapper {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 6px;
}
.hero-section h1, .about-hero h1, .services-hero h1, .process-hero h1, .testimonials-hero h1, .faq-hero h1, .contact-hero h1, .thank-you h1 {
  color: #111;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero-section p, .about-hero p, .services-hero p, .process-hero p, .testimonials-hero p, .faq-hero p, .contact-hero p, .thank-you p {
  color: #444;
  font-size: 1.15rem;
}
@media (max-width: 700px) {
  .hero-section h1, .about-hero h1, .services-hero h1, .process-hero h1, .testimonials-hero h1, .faq-hero h1, .contact-hero h1, .thank-you h1 {
    font-size: 1.45rem;
  }
}

/* ---------------------- FLEX LAYOUT PATTERNS ----------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: 28px 18px;
}
.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;
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(17,17,17,0.09);
  min-width: 260px;
  max-width: 420px;
  border: 1px solid #e7e7e7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .service-card-grid, .testimonial-list, .step-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* --------------------------- FEATURE/Grid patterns ----------------- */
.feature-grid, .service-card-grid, .testimonial-list, .step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.feature-card, .step {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px 22px 28px 22px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 12px;
  border: 1px solid #ebeced;
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.18s;
}
.feature-card:hover, .feature-card:focus-within, .step:hover, .step:focus-within {
  box-shadow: 0 4px 16px rgba(24,49,82,0.19);
  border-color: #d7dadf;
  transform: translateY(-4px) scale(1.01);
}
.feature-card img, .step img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.price {
  font-family: var(--font-display);
  font-size: 1.21rem;
  color: #1AD285;
  font-weight: 700;
  margin-top: 8px;
}
.step h3 {
  font-size: 1.14rem;
  color: #222;
  margin-top: 0;
  margin-bottom: 8px;
}

/* -------------------------- TESTIMONIALS -------------------------- */
.testimonials-preview-section, .testimonials-hero, .testimonial-list {
  background: #fff;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.testimonial-card {
  min-height: 140px;
  color: #1a1a1a;
  border-left: 6px solid #183152;
  position: relative;
  background: #fff;
}
.testimonial-card p {
  font-size: 1.06rem;
  margin-bottom: 10px;
  color: #262626;
  font-style: italic;
  line-height: 1.53;
}
.customer-name {
  font-size: 0.96rem;
  color: #49608d;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.star-rating {
  color: #fbbc05;
  font-size: 1.25em;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.testimonials-hero, .testimonial-list, .testimonials-preview-section {
  background: #fff;
  color: #1a1a1a;
}
@media (max-width: 600px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 24px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
}

/* --------------------------- FAQ ACCORDION ------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
}
.faq-item {
  background: #fcfcfd;
  border: 1px solid #e3e6e9;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 24px 18px;
  transition: box-shadow 0.14s, border-color 0.15s;
}
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  color: #111;
  cursor: pointer;
  user-select: none;
  transition: color 0.12s;
}
.faq-item.active {
  border-color: #111;
  box-shadow: 0 4px 14px rgba(24,49,82,0.09);
}
.accordion-content {
  font-size: 1.04rem;
  color: #202020;
  display: block; /* (will be shown/hidden by JS) */
  margin-top: 10px;
}

/* --------------------------- STEPS OVERVIEW ------------------------ */
.step-by-step-overview {
  padding-left: 20px;
  margin-bottom: 0;
}
.step-by-step-overview li {
  margin-bottom: 11px;
  font-size: 1.07rem;
  color: #262a32;
}

/* ------------------------ USPs & VALUE BLOCKS ---------------------- */
.usps-list, .company-values, .core-values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 24px;
  margin-bottom: 10px;
}
.key-facts, .fast-facts {
  background: #f6f6f9;
  border-radius: var(--radius-md);
  padding: 18px 18px 14px 18px;
  margin-top: 10px;
  box-shadow: var(--shadow-soft);
}
.key-facts ul, .fast-facts ul {
  margin-bottom: 0;
  list-style: disc inside;
  color: #444;
}

/* ---------------------------- TEXT SECTIONS ------------------------ */
.text-section {
  max-width: 680px;
}
.text-section strong {
  color: #111;
  font-weight: 700;
}

/* --------------------- TEAM AND ROLES ------------------------------ */
.team-member-roles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 22px;
  margin-bottom: 12px;
}

/* --------------------- MISC CARDS (THANK YOU) ----------------------- */
.thank-you ul, .thank-you li {
  margin: 0 0 10px 0;
  padding: 0;
}

/* ---------------------- COOKIE BANNER & MODAL ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 -1px 18px rgba(24,49,82,0.08);
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  min-height: 60px;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.56,.13,.19,.96), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 1.03rem;
  line-height: 1.5;
  color: #fff;
  max-width: 540px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-button {
  background: #fff;
  color: #111;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  outline: none;
}
.cookie-button:focus, .cookie-button:hover {
  background: #ececec;
}
.cookie-button.reject {
  background: #222;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-button.reject:focus, .cookie-button.reject:hover {
  background: #111;
  color: var(--color-accent,#1AD285);
  border: 1px solid var(--color-accent,#1AD285);
}
.cookie-button.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 500;
}
.cookie-button.settings:focus, .cookie-button.settings:hover {
  background: #222;
  color: var(--color-accent,#1AD285);
  border: 1px solid var(--color-accent,#1AD285);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 14px;
    text-align: left;
  }
  .cookie-banner-buttons {
    gap: 8px;
    flex-wrap: wrap;
  }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 17, 17, 0.85);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.23s both;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #18191b;
  border-radius: 18px;
  min-width: 300px;
  max-width: 94vw;
  padding: 36px 24px 28px 24px;
  box-shadow: 0 6px 54px rgba(24,49,82,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalAppear 0.22s cubic-bezier(.58,.18,.5,1.13) both;
}
@keyframes cookieModalAppear {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1);}
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #111;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-size: 1.02rem;
  color: #181a20;
}
.cookie-modal .toggle-switch {
  margin-left: auto;
  position: relative;
}
.toggle-switch input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
}
.toggle-switch span {
  display: inline-block;
  width: 38px;
  height: 22px;
  background: #ececec;
  border-radius: 20px;
  position: relative;
  transition: background 0.2s;
}
.toggle-switch input:checked + span {
  background: #183152;
}
.toggle-switch span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.2s;
}
.toggle-switch input:checked + span:before {
  left: 18px;
}
.cookie-modal-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-button {
  min-width: 110px;
}
    
/* ---------------------- RESPONSIVE DESIGN -------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-card-grid, .step-grid, .testimonial-slider {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
  }
  .feature-card, .step {
    min-width: 220px;
    max-width: 90vw;
  }
  .footer-meta {
    flex-direction: column;
    gap: 5px;
    font-size: 0.89rem;
  }
}
@media (max-width: 600px) {
  .feature-card, .step {
    padding: 20px 13px;
    min-width: unset;
    max-width: 100%;
  }
  .content-wrapper {
    gap: 14px;
    padding: 0;
  }
  section, .section {
    padding: 20px 2px;
    margin-bottom: 20px;
    border-radius: 9px;
  }
  .hero-section .content-wrapper, .about-hero .content-wrapper {
    padding-top: 0;
    padding-bottom: 2px;
  }
  .testimonial-card {
    padding: 14px 12px;
    min-width: unset;
    max-width: 100%;
  }
}

/* =================== INTERACTIVITY (MICRO EFFECTS) ================== */
button, .cta-button, .cookie-button, .feature-card {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s, border-color 0.12s;
}
.cta-button:active, .cookie-button:active {
  background: #111;
  color: #1AD285;
  transform: scale(0.97);
}
.feature-card:active {
  box-shadow: 0 1px 4px rgba(24,49,82,0.05);
  border-color: #e7e7e7;
  transform: scale(0.99);
}

/* -------------------------- UTILITIES ------------------------------- */
.hidden, .hide { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.align-end { align-items: flex-end !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ------------- Z-INDEX LAYERING ------------- */
header { z-index: 100; position: relative; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 2000; }
.cookie-modal-overlay { z-index: 3000; }

/* ---- Prevent overlapping and overflow in flex areas ---- */
.feature-grid > *, .service-card-grid > *, .testimonial-list > *, .step-grid > * {
  min-width: 0;
  flex-shrink: 1;
}

/* ------------ ENSURE VISIBILITY OF BUTTONS & LINKS ------------- */
a, .cta-button, .cookie-button, button {
  outline: none;
  box-shadow: none;
}
a:focus-visible, .cta-button:focus-visible, .cookie-button:focus-visible, button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
  z-index: 10;
  position: relative;
}

/* ------------ TYPOGRAPHY SCALE ------------ */
@media (min-width:700px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem;}
  h3 { font-size: 1.21rem; }
}
@media (max-width:700px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
}

/* -------------- FORMS -------------- */
input, textarea, select {
  border: 1px solid #e0e6ea;
  background: #fff;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 1.04rem;
}
input:focus, textarea:focus, select:focus {
  border-color: #183152;
  outline: none;
}
.text-section a {
  color: #186447;
}

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