/* ==== CSS RESET & BASE ==== */
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 { 
  box-sizing: border-box; 
  font-size: 16px; 
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F6F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233746;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: #E49E28; transition: color .2s; }
a:hover, a:focus { color: #233746; text-decoration: underline; }
ul, ol { padding-left: 1.5em; }

/* ==== FONTS ==== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  color: #233746;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4, h5 { font-size: 1.125rem; }
p, ul li, ol li { font-size: 1rem; margin-bottom: 8px; }
strong { font-weight: 700; }

/* ==== CONTAINER & LAYOUT ==== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ==== HEADER & NAV ==== */
header {
  background: #233746;
  color: #E5EAF0;
  padding: 0 0 0 0;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 80px;
  flex-wrap: wrap;
}
.branding {
  display: flex;
  align-items: center;
  gap: 20px;
}
.branding img {
  height: 48px;
  width: auto;
}
.branding .tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E49E28;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.03em;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E5EAF0;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E49E28;
  border-bottom: 2px solid #E49E28;
}
.cta-button.primary {
  background: #E49E28;
  color: #233746;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 16px 0 rgba(73,87,116,0.09);
  cursor: pointer;
  transition: background .2s,color .2s,box-shadow .25s;
  margin-left: 16px;
  margin-right: 0;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #233746;
  color: #E49E28;
  box-shadow: 0 4px 28px 0 rgba(73,87,116,0.15);
}
button.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #E49E28;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1101;
  padding: 8px;
  transition: color .2s;
}
button.mobile-menu-toggle:hover { color: #E5EAF0; }

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #233746;
  color: #E5EAF0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(0.52,0.01,0.95,0.29);
  z-index: 2000;
  padding-top: 24px;
  box-shadow: 12px 0 24px 0 rgba(34,55,70,0.2);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform .45s cubic-bezier(0.23,1,0.32,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E49E28;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 20px;
  margin-bottom: 24px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #E5EAF0;
  font-weight: 600;
  padding: 12px 0;
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E49E28;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .main-nav,
  .cta-button.primary {
    display: none;
  }
  button.mobile-menu-toggle {
    display: block;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(100deg,#E5EAF0 65%,#E49E28 225%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  border-bottom-left-radius: 48px 36px;
  box-shadow: 0 0 28px 0 rgba(34,55,70,0.04);
}
.hero .container { 
  min-height: 270px; 
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hero h1 {
  color: #233746;
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  font-weight: 800;
  text-shadow: 1px 2px 0 #E5EAF0;
}
.hero p {
  color: #233746;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 520px;
}

/* ==== SECTION STRUCTURE ==== */
.section { margin-bottom: 60px; padding: 40px 20px; background: none; }

.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 20px 0 rgba(228,158,40,0.08);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 295px;
  transition: box-shadow .22s,transform .2s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 42px 0 rgba(34,55,70,0.2);
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  z-index: 3;
}
.feature-grid img {
  height: 40px;
  margin-bottom: 12px;
}
.features h3 { color: #E49E28; margin-bottom: 8px; }

.services-preview ul, .services-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.services-preview ul li, .services-overview ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 8px rgba(34,55,70,0.05);
  padding: 18px 22px;
  min-width: 230px;
  font-size: 1.05rem;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
}
.services-preview ul li img, .services-overview ul li img {
  height: 34px;
}

.services-preview .cta-link {
  color: #233746;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 2px solid #E49E28;
  transition: color .2s,border .2s;
}
.services-preview .cta-link:hover { color: #E49E28; border-bottom: 2px solid #233746; }

.testimonials {
  margin: 60px 0 60px 0;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #233746;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(73,87,116,0.08);
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 260px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s,transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px 0 rgba(34,55,70,0.22);
  transform: translateY(-6px) scale(1.04) rotate(-0.8deg);
  z-index: 3;
}
.star-rating {
  color: #E49E28;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  letter-spacing: 0.12em;
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #E49E28;
}

.cta-banner {
  margin: 60px 0 0 0;
  padding: 36px 0 38px 0;
  background: #233746;
  color: #E5EAF0;
  border-radius: 24px 48px 20px 0px;
  box-shadow: 0 4px 24px 0 rgba(34,55,70,0.10);
  text-align: center;
}
.cta-banner h2 {
  color: #E49E28;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 0;
}
.cta-banner .cta-button.primary {
  margin-left: 0;
  margin-top: 10px;
}

/* ==== ABOUT & VALUES ==== */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}
.value-grid > div {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(73,87,116,0.09);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.value-grid > div img {
  height: 36px;
  margin-bottom: 10px;
}
.value-grid h3 {
  color: #E49E28;
  margin-bottom: 10px;
}

.team ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
}

/* ==== CONTACT DETAILS ==== */
.contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}
.contact-details ul li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(34,55,70,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  min-width: 220px;
  color: #233746;
  font-size: 1rem;
}
.contact-details ul img { height: 28px; }
.contact-details .text-section {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==== PRICING TABLE ==== */
.pricing-table table {
  width: 100%;
  margin-top: 18px;
  margin-bottom: 28px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(34,55,70,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead, .pricing-table th {
  background: #E5EAF0;
  color: #233746; 
  font-family: 'Montserrat', Arial, sans-serif; 
  font-weight: 700;
}
.pricing-table tr { border-bottom: 1px solid #E5EAF0; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table td {
  font-family: 'Roboto', Arial, sans-serif;
}
.inclusions {
  margin-top: 16px;
  background: #E5EAF0;
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 1rem;
}
.inclusions ul { margin: 10px 0 0 0; }

/* ==== FAQ ACCORDION ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.faq-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 14px rgba(34,55,70,0.07);
  padding: 20px 24px;
  position: relative;
  transition: box-shadow .22s,transform .18s;
}
.faq-list > div:hover {
  box-shadow: 0 6px 32px 0 rgba(228,158,40,0.17);
  transform: translateY(-2px) scale(1.01);
}
.faq-list h3 {
  color: #E49E28;
  font-size: 1.1rem;
}
.contact-suggestion {
  margin-top: 26px;
  padding: 16px 20px;
  background: #E5EAF0;
  border-radius: 14px;
  color: #233746;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ==== LEGAL SECTION ==== */
.legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(73,87,116,0.08);
  color: #233746;
}
.legal-section h1 {
  font-size: 2.1rem;
  color: #E49E28;
  margin-bottom: 22px;
}
.legal-section h2 {
  font-size: 1.2rem;
  color: #233746;
  margin-top: 32px;
  margin-bottom: 8px;
}
.legal-section ul { margin-bottom: 12px; }

/* ==== THANK YOU SECTION ==== */
.thank-you-section {
  margin: 60px 0 60px 0;
}
.thank-you-section ul {
  margin-top: 16px;
  margin-bottom: 24px;
}
.thank-you-section .cta-button {
  margin-top: 8px;
}

/* ==== FOOTER ==== */
footer {
  background: #233746;
  color: #E5EAF0;
  padding: 28px 0 0 0;
  border-top-left-radius: 28px 18px;
  margin-top: 60px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.footer-navigation a {
  color: #E49E28;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color .2s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #E5EAF0;
}
.brand-signature {
  font-size: 0.97rem;
  color: #E5EAF0;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ==== BUTTONS & LINKS ==== */
.cta-button {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 26px;
  background: #233746;
  color: #E5EAF0;
  border-radius: 36px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34,55,70,0.07);
  transition: background .18s, color .16s, box-shadow .16s;
}
.cta-button:hover, .cta-button:focus {
  background: #E49E28;
  color: #233746;
  box-shadow: 0 5px 28px 0 rgba(228,158,40,0.12);
}

/* ==== FLEX SPACING AND PATTERNS (MANDATORY) ==== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }

/* ==== UTILITY ==== */
::-webkit-input-placeholder { color: #B0BBC4; }
:-moz-placeholder { color: #B0BBC4; }
::-moz-placeholder { color: #B0BBC4; }
:-ms-input-placeholder { color: #B0BBC4; }

/* ==== HORIZONTAL DIVIDERS, Artistic Highlights ==== */
hr {
  border: none;
  border-top: 2.5px dashed #E49E28;
  width: 32%;
  margin: 38px 0 36px 0;
  opacity: .42;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero, .cta-banner, .features, .testimonials, .thank-you-section {
  animation: fadeInUp 0.66s cubic-bezier(0.23,1,.32,1);
}
.testimonial-card, .feature-grid > div, .value-grid > div, .faq-list > div {
  transition: box-shadow .2s, transform .16s;
}

/* ==== ARTISTIC EFFECTS ==== */
.feature-grid > div:before, .value-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  left: 12px; top: 10px;
  width: 10px; height: 35px;
  border-radius: 8px;
  background: #E49E28;
  opacity: 0.075;
  z-index: 0;
}
.feature-grid > div:hover:before, .value-grid > div:hover:before {
  background: #E49E28;
  opacity: 0.18;
}
.testimonial-card:before {
  content: '';
  position: absolute;
  right: 14px; top: -8px;
  width: 46px; height: 38px;
  background: #E49E28;
  opacity: 0.055;
  border-radius: 70% 30% 49% 51%/61% 13% 87% 39%;
  z-index: 0;
}
.testimonial-card:hover:before {
  opacity: 0.13;
}

/* ==== COOKIE BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #233746;
  color: #E5EAF0;
  box-shadow: 0 -2px 22px 0 rgba(34,55,70,0.17);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 5vw;
  font-size: 1rem;
  z-index: 3000;
  animation: fadeInUp 0.7s cubic-bezier(0.23,1,.32,1);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-consent-banner button {
  padding: 8px 22px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  margin: 0 2px;
  transition: background .18s, color .18s, box-shadow .14s;
}
.cookie-consent-banner .accept-btn {
  background: #E49E28;
  color: #233746;
}
.cookie-consent-banner .accept-btn:hover, .cookie-consent-banner .accept-btn:focus {
  background: #E5EAF0;
  color: #233746;
}
.cookie-consent-banner .reject-btn {
  background: #E5EAF0;
  color: #233746;
}
.cookie-consent-banner .reject-btn:hover, .cookie-consent-banner .reject-btn:focus {
  background: #E49E28;
  color: #E5EAF0;
}
.cookie-consent-banner .settings-btn {
  background: transparent;
  color: #E49E28;
  border: 2px solid #E49E28;
}
.cookie-consent-banner .settings-btn:hover, .cookie-consent-banner .settings-btn:focus {
  background: #E49E28;
  color: #233746;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,55,70,0.60);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
  animation: fadeInUp .22s cubic-bezier(.23,1,.32,1);
}
.cookie-modal {
  background: #fff;
  color: #233746;
  border-radius: 26px;
  padding: 38px 32px;
  min-width: 330px;
  box-shadow: 0 8px 44px 0 rgba(34,55,70,0.22);
  position: relative;
  animation: fadeInUp .32s cubic-bezier(.23,1,.32,1);
}
.cookie-modal h2 {
  color: #E49E28;
  margin-bottom: 14px;
  font-size: 1.34rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.cookie-toggle {
  appearance: none;
  height: 22px; width: 38px;
  background: #E5EAF0;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .22s;
}
.cookie-toggle:checked {
  background: #E49E28;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px; left: 4px;
  height: 16px; width: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(34,55,70,0.14);
  transition: left .18s;
}
.cookie-toggle:checked:before { left: 18px; }
.cookie-category .cookie-toggle[disabled] {
  opacity: .44;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  background: #E49E28;
  color: #233746;
  transition: background .18s, color .18s, box-shadow .13s;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #233746;
  color: #E49E28;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: #E49E28;
  font-size: 2rem;
  cursor: pointer;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1200px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .feature-grid > div, .value-grid > div, .testimonial-card, .services-preview ul li,
  .contact-details ul li {
    min-width: 180px;
    max-width: 99vw;
    padding: 18px;
  }
  .content-wrapper { gap: 16px; }
  .section { padding: 34px 10px; margin-bottom: 40px; }
}
@media (max-width: 768px) {
  .header .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero { min-height: 230px; border-bottom-left-radius: 32px 18px; padding: 18px 0; }
  .hero .container { min-height: 120px; align-items: flex-start; }
  .feature-grid, .services-preview ul, .value-grid, .testimonial-grid, .contact-details ul {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .testimonial-card, .services-preview ul li, .contact-details ul li, .value-grid > div {
    max-width: 98vw;
    min-width: 0;
  }
  .cta-banner {
    border-radius: 18px 34px 8px 0px;
    padding-left: 4vw; padding-right: 4vw;
  }
  .card-container { flex-direction: column; gap: 16px; }
  .footer-navigation {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 620px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero h1 { font-size: 1.5rem; }
  header .branding img { height: 38px; }
  .container { padding: 0 8px; }
  .footer-navigation { gap: 6px; }
}
@media (max-width: 430px) {
  .hero h1, h1 { font-size: 1.12rem; }
  .hero { min-height: 105px; padding-top: 6vw; }
  .cta-banner { padding: 10vw 0; font-size: 0.9rem; }
  .cookie-consent-banner { font-size: 0.97rem; padding: 14px 5vw; gap: 10px; }
  .cookie-modal { min-width: 90vw; padding: 24px 4vw; }
}
