/* --- 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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FCFBFF;
  color: #313C4B;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
strong, b { font-weight: 700; }

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

/* --- CSS VARIABLES: SOFT PASTEL PALETTE --- */
:root {
  --primary: #313C4B;
  --secondary: #DA251D;
  --accent: #F5F5F6;
  /* Soft pastel colors */
  --pastel-blue: #bcdffb;
  --pastel-lavender: #e6e8fc;
  --pastel-pink: #ffe0ec;
  --pastel-yellow: #fff7cd;
  --pastel-green: #dff7eb;
  --pastel-mint: #ccf2f4;
  --pastel-grey: #f9fafc;
  --shadow: 0 4px 16px 0 rgba(180,199,220,.12),0 1.5px 8px 0 rgba(185,185,217,.09);
  --radius: 18px;
}

/* ---- TYPOGRAPHY ---- */
h1, .hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: .01em;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
}
p, li, dd, dt {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #3c495b;
  line-height: 1.7;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: #4c5573;
  margin-bottom: 24px;
}
.cta-link {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: underline;
  transition: color .18s cubic-bezier(.4,0,.2,1);
}
.cta-link:hover { color: #bc1d15; }

/* ---- GENERAL SPACING & CONTAINERS ---- */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-grey);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- HEADER ---- */
header {
  background: linear-gradient(90deg, #e6e8fc 0%, #ffe0ec 100%);
  padding: 0;
  box-shadow: 0 2px 10px 0 rgba(165,185,205,0.06);
  border-bottom: 1px solid #eee;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 10px 20px 10px 20px;
}
header img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--primary);
  padding: 8px 8px;
  border-radius: 9px;
  transition: background .2s, color .2s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.cta-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.09rem;
  background: var(--secondary);
  color: #fff !important;
  border: none;
  padding: 12px 32px;
  border-radius: 22px;
  box-shadow: 0 2.5px 9px 0 rgba(212,80,88,0.11);
  margin-left: 20px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  outline: none;
  letter-spacing: .02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #bc1d15;
  box-shadow: 0 4px 16px 0 rgba(220,70,70,.22);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(105deg, #e6e8fc 70%, #ccf2f4 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 28px;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  padding: 38px 0;
  align-items: flex-start;
  gap: 14px;
}
.hero .cta-btn {
  margin-left: 0;
  margin-top: 12px;
}

/* ---- FEATURES / LISTS / CARDS ---- */
.features-list, .benefits-list, .feature-story-list, .tip-list, .testdrive-story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  margin-top: 8px;
}
.features-list li, .feature-story-list li, .tip-list li, .testdrive-story-list li {
  background: linear-gradient(102deg, #fff6ea 60%, #ccf2f4 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 22px 20px;
  margin-bottom: 8px;
  transition: box-shadow .18s cubic-bezier(.4,0,.2,1),transform .13s;
  display: flex;
  align-items: center;
  gap: 18px;
}
.features-list li:hover, .feature-story-list li:hover, .tip-list li:hover, .testdrive-story-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(220,220,250,0.13);
  transform: translateY(-2px) scale(1.012);
}
.feature-icon {
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background: var(--pastel-blue);
  display: flex;
  align-items: center; justify-content: center;
}
.feature-icon img {
  width: 36px;
  height: 36px;
}

/* --- RATING BADGE / BADGES --- */
.rating-badge {
  display: inline-block;
  background: var(--pastel-yellow);
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  box-shadow: 0 2px 7px 0 #eedbcb7e;
}

/* --- TEST LISTS / REVIEW CARDS --- */
.test-list-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: column;
}
.review-card {
  border-radius: var(--radius);
  background: linear-gradient(105deg, #dff7eb 68%, var(--accent) 100%);
  box-shadow: var(--shadow);
  padding: 25px 18px 18px 20px;
  min-width: 0;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow .17s, transform .15s;
}
.review-card:hover {
  box-shadow: 0 8px 32px 0 #bcdffb2c;
  transform: translateY(-2.5px) scale(1.013);
}

/* --- CONTENT CARDS / CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--pastel-lavender);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .14s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #bcdffb3e;
}

/* --- GRIDS / ROWS (FLEX ONLY!) --- */
.content-grid, .latest-content, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.content-grid > * {
  flex: 1 1 195px;
  min-width: 250px;
}
.latest-content {
  flex-direction: column;
  gap: 24px;
}

/* TESTIMONIALS & DRIVER IMPRESSION --- */
.testimonial-card, .driver-impression {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #19202e;
}
.driver-impression span, .testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  color: #233144;
}
.vehicle-highlight {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup {
  background: linear-gradient(97deg, #ffe0ec 69%, #dff7eb 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px 22px 28px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.newsletter-signup h3 {
  color: var(--secondary);
  font-size: 1.25rem;
}

/* --- BUTTONS, LINKS, UTILS --- */
.compare-btn, .newsletter-signup a {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.07rem;
  padding: 11px 30px;
  border-radius: 22px;
  background: var(--pastel-blue);
  color: var(--primary);
  font-weight: 500;
  margin-top: 13px;
  box-shadow: 0 2px 9px 0 #bddbe452;
  transition: background .14s, color .14s;
}
.compare-btn:hover, .newsletter-signup a:hover {
  background: var(--secondary);
  color: #fff;
}
/* Small util buttons */
.btn-small {
  font-size: .97rem;
  padding: 6px 17px;
  border-radius: 13px;
  background: var(--pastel-yellow);
  color: var(--secondary);
  border: none;
  cursor: pointer;
}

/* --- MOBILE MENU / BURGER NAV --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 17px; right: 22px;
  z-index: 150;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 #dda4a44d;
  transition: background .14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #bc1d15;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(243,243,254,0.98);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.72,-0.07,.16,1.07);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  box-shadow: -8px 0 28px 0 #bcdffb35;
}
.mobile-menu-close {
  margin: 22px 20px 0 0;
  align-self: flex-end;
  background: none;
  color: var(--secondary);
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color .13s;
  z-index: 1001;
}
.mobile-menu-close:hover {
  color: #ce0220;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 48px 0 0 28px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  padding: 8px 6px;
  border-radius: var(--radius);
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}

@media (max-width: 1060px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 14px;
    padding: 10px 7px;
  }
}
@media (max-width: 820px) {
  header nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .content-grid {
    flex-wrap: wrap;
    gap: 18px;
  }
  .card-container {
    flex-wrap: wrap;
    gap: 16px;
  }
  .test-list-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* Hide main nav, show burger menu on mobile */
@media (max-width: 768px) {
  header nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    min-height: 60px;
    padding: 8px 8px 8px 12px;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 9px;
  }
  .newsletter-signup {
    padding: 22px 12px 17px 12px;
  }
  .latest-content, .content-wrapper {
    gap: 13px;
  }
}

/* HERO responsive */
@media (max-width: 600px) {
  .hero h1, .hero h2 { font-size: 1.53rem; }
  .hero .content-wrapper { padding: 19px 0; }
}

/* Grids to column */
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid, .test-list-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features-list,
  .feature-story-list,
  .tip-list,
  .testdrive-story-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .driver-impression {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
}

/* ALTERNATING SECTIONS / CARDS / DECOR */
.section:nth-child(even) {
  background: var(--pastel-lavender);
}
.section:nth-child(odd) {
  background: var(--pastel-blue);
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(90deg, #e6e8fc 0%, #ccf2f4 100%);
  padding: 32px 0 14px 0;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 14px 0 #cfd9ea1a;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 40px;
  min-height: 96px;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  gap: 23px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--secondary);
  font-size: 1.06rem;
  text-decoration: underline;
  padding: 6px 2px;
  border-radius: 7px;
  transition: background .17s, color .13s;
}
.footer-nav a:hover {
  color: #fff;
  background: var(--secondary);
}
.contact-block {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  padding: 23px 28px;
  box-shadow: 0 3px 14px 0 #c4eaf057;
  font-size: 1rem;
  color: #2d3248;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-block img {
  height: 18px;
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
footer img {
  height: 44px;
  width: auto;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 21px 8px;
    align-items: flex-start;
    padding: 0 7px;
  }
  .contact-block {
    padding: 13px 9px;
  }
}

/* --- LEGAL TEXTS --- */
.legal {
  background: var(--pastel-grey);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1.5px 7px #dfdff53a;
}
@media (max-width:440px) {
  .legal { padding: 7px; font-size: 0.97rem; }
}

/* --- ADDRESS BLOCK & MAP --- */
.address-block {
  background: var(--pastel-yellow);
  border-radius: var(--radius);
  padding: 22px 19px 18px 23px;
  margin-bottom: 21px;
  font-size: 1.04rem;
  box-shadow: var(--shadow);
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pastel-blue);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.99rem;
  box-shadow: 0 2px 8px #aad8fb19;
  margin-top: 13px;
}
.map-embed img {
  width: 34px; height: 34px;
}

/* --- FAQ --- */
.faq {
  margin-top: 28px;
  background: var(--pastel-mint);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 2.5px 8px #bcdffb22;
}
.faq h3 {
  color: var(--secondary);
  margin-bottom: 5px;
}
.faq dt {
  font-weight: 700;
  margin-top: 10px;
}
.faq dd {
  margin-left: 11px;
  margin-bottom: 10px;
}

/* --- QUICK-ADVICE --- */
.quick-advice {
  background: var(--pastel-pink);
  border-radius: var(--radius);
  padding: 13px 19px;
  margin-top: 13px;
  font-size: 0.98rem;
  color: #35465f;
  box-shadow: 0 2.5px 8px #fbdadd16;
}
.quick-advice h3 {
  color: #d54938;
}

/* --- CHRONIK --- */
.chronik {
  margin-top: 24px;
  background: var(--pastel-grey);
  border-radius: var(--radius);
  padding: 17px 23px;
  box-shadow: 0 1.5px 7px #b9b9e648;
}
.event-highlights {
  margin-top: 21px;
  background: var(--pastel-yellow);
  border-radius: var(--radius);
  padding: 13px 18px;
  box-shadow: 0 1.5px 6px #e9e0b447;
}

/* ---- THANK YOU PAGE ---- */
.thankyou-message {
  font-size: 1.3rem;
  color: #2a3c50;
  margin-bottom: 18px;
}
.next-steps {
  background: var(--pastel-blue);
  border-radius: var(--radius);
  padding: 14px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2.5px 8px #bcdffb19;
}

/* ---- MICRO-INTERACTION / TRANSITIONS / HOVERS ---- */
.card, .review-card, .newsletter-signup, .feature-icon, .address-block, .faq, .quick-advice, .chronik, .event-highlights, .legal, .contact-block {
  transition: box-shadow .14s cubic-bezier(.4,0,.2,1),transform .10s cubic-bezier(.44,0,.64,1);
}
.cta-btn, .compare-btn, .newsletter-signup a {
  transition: background .17s, color .14s, box-shadow .11s;
}

/* ---- SCROLLBAR SOFT PASTEL ---- */
::-webkit-scrollbar { width: 10px; background: #f7f9fc; }
::-webkit-scrollbar-thumb { background: #e3ecfa; border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: #cde2f8; }

/* ------ COOKIE CONSENT BANNER ------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: linear-gradient(88deg, #fff7cd 85%, #f5f5f6 100%);
  box-shadow: 0 -2px 18px 0 #ffd08033;
  color: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-radius: 20px 20px 0 0;
  gap: 18px;
  opacity: 1;
  transition: opacity .26s;
}
@media (max-width:640px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 8px; }
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  border: none;
  border-radius: 16px;
  padding: 9px 23px;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px #eedbcb6a;
  background: var(--pastel-yellow);
  color: var(--primary);
  transition: background .12s, color .12s;
}
.cookie-btn:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept { background: var(--secondary); color: #fff; }
.cookie-btn.accept:hover { background: #bc1d15; }
.cookie-btn.settings {
  background: var(--pastel-lavender);
  color: var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: #dff7eb;
  color: var(--secondary);
}
.cookie-btn.reject:hover {
  background: var(--secondary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,245,250,0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal.open {
  opacity: 1; pointer-events: all;
}
.cookie-modal-content {
  background: linear-gradient(97deg, #e6e8fc 60%, #ccf2f4 100%);
  border-radius: var(--radius);
  min-width: 310px;
  max-width: 96vw;
  padding: 30px 36px 24px 26px;
  box-shadow: 0 12px 55px 0 #bedaf562;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-toggle {
  appearance: none;
  border-radius: 17px;
  background: #fff6ea;
  width: 38px;
  height: 21px;
  outline: none;
  transition: background .15s;
  position: relative;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #4cddb7;
}
.cookie-toggle::before {
  content: '';
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 2px; top: 2px;
  transition: left .19s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 8px #e4e4ff29;
}
.cookie-toggle:checked::before {
  left: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 0 6px 0;
}
.cookie-category.essential {
  opacity: .64;
  font-style: italic;
}
.cookie-modal-footer {
  text-align: right;
  margin-top: 7px;
}

/***** END - COOKIE CONSENT ******/

/* --- UTILITY CLASSES --- */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 15px; } .mt-3 { margin-top: 23px; }
.mb-1 { margin-bottom: 9px; } .mb-2 { margin-bottom: 17px; } .mb-3 { margin-bottom: 26px; }
.gap-1 { gap: 8px; } .gap-2 { gap: 15px; } .gap-3 { gap: 21px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* --- ACCESSIBILITY & INTERACTIVE STATES --- */
a, button, .cta-btn, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle {
  outline: none;
}
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  box-shadow: 0 0 0 2px var(--secondary);
}

/* --- FORMS (for contact forms etc.) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #e5eafb;
  border-radius: 10px;
  padding: 13px 10px;
  background: #fcfbff;
  margin-bottom: 13px;
  transition: border .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
}

/* ---- END OF CSS ---- */
