/*========================================================
  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, menu, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #1A2536;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #12387A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFAD3A;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
::-webkit-input-placeholder { color: #7B8AA1; }
::-moz-placeholder { color: #7B8AA1; }
:-ms-input-placeholder { color: #7B8AA1; }
::placeholder { color: #7B8AA1; }

/*========================================================
  Typography
==========================================================*/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  line-height: 1.16;
  font-weight: 700;
  color: #12387A;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 600;
  color: #12387A;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.32;
  font-weight: 600;
  color: #12387A;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #12387A;
  margin-bottom: 8px;
}
p, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #28344b;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #1A2536;
}
blockquote {
  border-left: 4px solid #12387A;
  background: #E6EDF7;
  color: #17305C;
  font-style: italic;
  font-size: 1.1rem;
  padding: 14px 26px 14px 18px;
  margin-bottom: 8px;
}
/* Typography spacing in section wrappers */
.content-wrapper h1:not(:first-child),
.content-wrapper h2:not(:first-child) {
  margin-top: 32px;
}

/*========================================================
  Container Layouts
==========================================================*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(18,56,122,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/*========================================================
  Header & Navigation
==========================================================*/
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.04);
  position: relative;
  z-index: 31;
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0 8px 0;
  color: #1A2536;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #FFAD3A;
  transition: width 0.2s;
  margin: 0 auto 0 auto;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #12387A;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
/* Mobile nav button */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #12387A;
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 6px;
  z-index: 34;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E6EDF7;
}

/* Burger and mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(18,56,122,0.16);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.56,.01,.4,.99);
  z-index: 1002;
  padding: 32px 24px 24px 24px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #12387A;
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
  z-index: 1003;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 12px 8px;
  color: #17305C;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6EDF7;
  color: #12387A;
}
/* Hide main nav & show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width:600px){
  header .btn-primary {display:none;}
}

/*========================================================
  Buttons and Links
==========================================================*/
.btn-primary {
  background: #12387A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  border: none;
  border-radius: 9px;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.10);
  transition: background 0.19s, box-shadow 0.13s, transform 0.12s;
  display: inline-block;
  margin-top: 8px;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2966B8;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(18,56,122,0.18);
}
.btn-link {
  color: #12387A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
  text-underline-offset: 0.13em;
  display: inline-block;
  margin-top: 10px;
  position: relative;
}
.btn-link:after {
  content: '\2192';
  margin-left: 8px;
  font-size: 1.1em;
  vertical-align: middle;
  color: #FFAD3A;
  transition: margin-left 0.1s;
}
.btn-link:hover:after, .btn-link:focus:after {
  margin-left: 16px;
}
.btn-link:hover, .btn-link:focus {
  color: #FFAD3A;
}

/*========================================================
  Hero Section
==========================================================*/
.hero {
  background: linear-gradient(90deg, #E6EDF7 60%, #fff 100%);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 10px 24px 0 rgba(18,56,122,0.08);
  margin-bottom: 48px;
  padding: 48px 0 36px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 4px;
  color: #2A3451;
}
.hero .btn-primary {
  margin-top: 14px;
}

/*===========================================================
  Feature/Leistungen Grid
============================================================*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
  margin-bottom: 24px;
}
.feature {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.08);
  border-radius: 12px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 265px;
  padding: 26px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.18s, transform 0.13s;
  margin-bottom: 20px;
}
.feature img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.13rem;
  color: #12387A;
  margin-bottom: 0px;
}
.feature p {
  font-size: 0.99rem;
  color: #20304A;
  margin-bottom: 0px;
}
.feature:hover, .feature:focus-visible {
  box-shadow: 0 4px 22px 0 rgba(18,56,122,0.16);
  transform: translateY(-3px) scale(1.029);
}

/*========================================================
  USP-List & Steps
==========================================================*/
.usp-list, .value-list, .benefits-list, .top-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
  padding-left: 18px;
}
.usp-list li::before, .benefits-list li::before, .value-list li::before {
  content: '\2714\0020';
  color: #FFAD3A;
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 8px;
}
.value-list li strong {
  color: #12387A;
}
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 12px 0 18px 0;
}
.step {
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 270px;
  background: #E6EDF7;
  border-radius: 8px;
  padding: 18px 14px;
  color: #17305C;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.07);
  font-weight: 500;
  transition: box-shadow 0.15s, transform 0.11s;
}
.step:hover, .step:focus-visible {
  box-shadow: 0 4px 18px 0 rgba(18,56,122,0.14);
  transform: translateY(-2px) scale(1.015);
}
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.steps-timeline .step {
  background: #fff;
  border-left: 4px solid #12387A;
  border-radius: 9px;
  box-shadow: 0 2px 6px 0 rgba(18,56,122,0.06);
  margin-bottom: 20px;
  padding: 20px 24px;
  min-width: unset;
}

/*========================================================
  Testimonial Card
==========================================================*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(18,56,122,0.07);
  padding: 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.17s, transform 0.10s;
  color: #17305C;
}
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid #FFAD3A;
  color: #17305C;
  padding-left: 14px;
  margin: 0;
  font-size: 1.14rem;
  font-style: italic;
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #12387A;
  font-weight: 500;
  font-size: 1rem;
  margin-left: auto;
  margin-right: 0px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(18,56,122,0.14);
  transform: translateY(-3px);
}

/*========================================================
  CTA Banner
==========================================================*/
.cta-banner {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #12387A;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(18,56,122,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: #F5F7FA;
  font-size: 1.08rem;
}
.cta-banner .btn-primary {
  background: #FFAD3A;
  color: #12387A;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
  margin-top: 10px;
}
.cta-banner .btn-primary:hover, .cta-banner .btn-primary:focus {
  background: #fff;
  color: #12387A;
}

/*========================================================
  Card & Card Containers
==========================================================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.08);
  padding: 22px 18px;
  transition: box-shadow 0.14s, transform 0.11s;
}
.card:hover, .card:focus-visible {
  box-shadow: 0 6px 22px 0 rgba(18,56,122,0.14);
  transform: translateY(-2px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* For contact details section */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 220px;
  min-width: 185px;
  max-width: 285px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.05);
  padding: 20px 16px 18px 16px;
  font-size: 1rem;
}
.map-opening {
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-placeholder {
  background: #E6EDF7;
  border-radius: 9px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.opening-hours {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.05);
  padding: 14px 14px 10px 14px;
  font-size: 1em;
}

/*========================================================
  Text/Image & Flexbox Content Grids
==========================================================*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*========================================================
  Various List Style Fixes
==========================================================*/
.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}
.service-list h2 {
  font-size: 1.22rem;
  color: #12387A;
  margin-bottom: 0;
}
.service-list p {
  font-size: 1rem;
}
.benefits-list li,
.top-faq-list li {
  font-size: 0.99rem;
  color: #29456E;
  font-family: 'Roboto', Arial, sans-serif;
}
.trusted-badges {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 14px 0 10px 0;
}
.customer-commitment {
  background: #E6EDF7;
  border-radius: 8px;
  color: #17305C;
  padding: 14px 12px 14px 18px;
  font-size: 1.01rem;
}
.short-about {
  margin-bottom: 6px;
  font-size: 1.08em;
  color: #193465;
}

/*========================================================
  FAQ Accordion
==========================================================*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(18,56,122,0.06);
  padding: 18px 18px 14px 18px;
  transition: box-shadow 0.13s;
  margin-bottom: 10px;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 16px 0 rgba(18,56,122,0.14);
}
.faq-item h2 {
  font-size: 1.08rem;
  color: #12387A;
  margin-bottom: 7px;
}

.success-message {
  font-size: 1.19rem;
  font-weight: 500;
  color: #11366F;
  margin-bottom: 20px;
}
.next-steps {
  margin-bottom: 16px;
}

/*========================================================
  Footer
==========================================================*/
footer {
  background: #12387A;
  color: #fff;
  padding: 48px 0 0 0;
  border-radius: 24px 24px 0 0;
  margin-top: 40px;
  box-shadow: 0 -2px 18px 0 rgba(18,56,122,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #F5F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  margin-bottom: 0;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFAD3A;
}
.brand-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
.brand-info img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  margin-right: 10px;
}
.brand-info address {
  font-style: normal;
  color: #E6EDF7;
  font-size: 1.03rem;
  margin-bottom: 2px;
}
.contact-short {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #fff;
  margin-top: 2px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 0px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  transition: box-shadow 0.14s, transform 0.11s;
}
.social-links a:hover img {
  box-shadow: 0 2px 12px 0 rgba(255,173,58,0.23);
  transform: scale(1.10);
}
.copyright {
  margin-top: 15px;
  text-align: right;
  color: #C5D3ED;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
}

/*========================================================
  Cookie Consent Banner & Modal
==========================================================*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #24385A;
  color: #fff;
  z-index: 2000;
  box-shadow: 0 -2px 16px 0 rgba(18,56,122,0.11);
  border-radius: 14px 14px 0 0;
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: center;
  transition: transform 0.3s, opacity .2s;
  opacity: 1;
  font-size: 1rem;
  min-height: 80px;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  max-width: 610px;
  font-size: 1em;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 22px;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  border: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
}
.cookie-banner .btn-accept {
  background: #FFAD3A;
  color: #12387A;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #ffd185;
  color: #12387A;
  box-shadow: 0 2px 10px 0 rgba(255,173,58,0.23);
}
.cookie-banner .btn-reject {
  background: #fff;
  color: #12387A;
  border: 2px solid #FFAD3A;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #F5F7FA;
  color: #e67c00;
  border-color: #e67c00;
}
.cookie-banner .btn-settings {
  background: #E6EDF7;
  color: #12387A;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #CAD8EA;
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(36,56,90,0.32);
  z-index: 4002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  max-width: 430px;
  width: 92vw;
  padding: 32px 28px 22px 28px;
  border-radius: 14px;
  box-shadow: 0 4px 30px 0 rgba(18,56,122,0.20);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #12387A;
  font-size: 1.23rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-category {
  font-size: 1.01rem;
  color: #193465;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-modal-category label {
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #FFAD3A;
  margin-right: 4px;
}
.cookie-modal-category .always-on {
  color: #2DB580;
  font-size: 1em;
  margin-left: 6px;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: none;
  border: none;
  color: #12387A;
  font-size: 1.35rem;
  cursor: pointer;
}
.cookie-modal .btn-primary {
  background: #12387A;
  color: #fff;
}
.cookie-modal .btn-primary:hover, .cookie-modal .btn-primary:focus {
  background: #FFAD3A;
  color: #12387A;
}

/*========================================================
  Responsive Design
==========================================================*/
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 1024px) {
  .hero .content-wrapper {
    max-width: 92vw;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
    margin-bottom: 17px;
  }
  h2, .h2 {
    font-size: 1.34rem;
    margin-bottom: 13px;
  }
  .section, .cta-banner {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .brand-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .steps-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    align-items: flex-start;
  }
  .cta-banner .container {
    padding: 0 3px;
  }
  .cta-banner {
    padding: 22px 0px;
    margin-bottom: 34px;
  }
  .footer-nav {
    gap: 14px;
    font-size: 0.99em;
  }
  .contact-details {
    flex-direction: column;
    gap: 14px;
  }
  .map-opening {
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 0 18px 0;
    border-radius: 0 0 11px 11px;
  }
  .footer-nav, .brand-info, .contact-short, .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .copyright {
    text-align: left;
    margin-top: 9px;
  }
  .cta-banner {
    border-radius: 10px;
    min-height: 0;
  }
  footer {
    border-radius: 12px 12px 0 0;
    padding: 32px 0 0 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 8px 12px 11px;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .cookie-modal-content {
    padding: 19px 7px 15px 10px;
    min-width: 0;
    max-width: 99vw;
  }
}
@media (max-width: 430px) {
  header .container {
    flex-direction: row;
    gap: 5px;
    min-height: 64px;
    padding-left: 2px; padding-right: 2px;
  }
  .footer-nav {
    gap: 8px;
  }
}

/*========================================================
  Animations & Microinteractions
==========================================================*/
:focus {
  outline: 2px dashed #FFAD3A;
  outline-offset: 2px;
}
button:focus-visible {
  outline: 2px solid #FFAD3A;
  outline-offset: 1px;
}

/* Card and button subtle scale/hover effect handled above */

/* Hamburger open/close handled in .mobile-menu{...} and .mobile-menu.open{...} */

/*========================================================
  Print Styles
==========================================================*/
@media print{
  *{box-shadow:none !important;text-shadow:none !important;}
  header,.main-nav,.mobile-menu,.cookie-banner,.cta-banner,footer,.mobile-menu-toggle{display:none!important;}
  body{background:#fff!important;color:#000;}
  .section,.content-wrapper{background:transparent!important;box-shadow:none!important;border-radius:0!important;}
}
