/* =====================================================
   CSS RESET & NORMALIZE FOR CONSISTENCY
   ===================================================== */
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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #21242a;
  color: #F1ECE7;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a { color: inherit; text-decoration: none; transition: color 0.25s; }
a:focus { outline: 2px dashed #01FFF4; outline-offset: 1px; }
img, video { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 24px; }
table { border-collapse: collapse; width: 100%; font-size: 1em; }

/* =====================================================
   BRAND COLORS & CSS VARIABLES
   ===================================================== */
:root {
  --color-primary: #25303B;
  --color-secondary: #967054;
  --color-accent: #F1ECE7;
  --color-bg-dark: #16181d;
  --color-bg-overlay: rgba(37,48,59,0.97);
  --color-neon: #01FFF4;
  --color-danger: #EF476F;
  --color-shadow: 0 2px 32px 0 rgba(26, 220, 245, 0.09);
  --color-success: #00f2a9;
  --transition: 0.34s cubic-bezier(.6,-0.28,.74,.05);
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
@import url('https://fonts.googleapis.com/css?family=Oswald:600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--color-accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; line-height: 1.12; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.14; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
p, li, dl, dt, dd {
  font-size: 1rem; color: var(--color-accent);
  line-height: 1.8;
}
strong { color: var(--color-neon); font-weight: 600; }
.text-section ul, .text-section ol {
  margin-bottom: 20px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
}

/* =====================================================
   GENERAL LAYOUT HELPERS
   ===================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* Flex spacing and alignment patterns - DO NOT USE GRID */
.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;
  background: #fff;
  color: #21242a;
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 rgba(50,255,240,0.09);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  min-height: 120px;
  border-left: 6px solid var(--color-neon);
  transition: box-shadow var(--transition), border-left var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 2px 44px 0 rgba(0,255,239,0.23);
  border-left: 6px solid #00f2a9;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Section background visual for "tech_futuristic" look */
.hero,
.cta-banner,
.cta-section {
  background: linear-gradient(125deg, #25303B 0%, #181A21 100%);
  position: relative;
  box-shadow: 0 2px 64px 0 rgba(0,255,239,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.section {
  background: linear-gradient(122deg, #21242a 62%, #25303b 100%);
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(26, 220, 245, 0.09);
}

/* neon divider for section accents */
.section:not(:last-of-type):after {
  content: "";
  display: block;
  margin: 40px auto 0 auto;
  width: 108px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, #01FFF4, transparent);
}

/* =====================================================
   NAVIGATION BAR & MOBILE MENU
   ===================================================== */
header {
  background: rgba(22, 24, 29, 0.99);
  position: sticky; top: 0; z-index: 1090;
  box-shadow: 0 4px 28px 0 rgba(1,255,244,0.06);
  padding: 0;
}
.logo img {
  max-height: 56px;
  width: auto;
  margin-right: 24px;
  filter: drop-shadow(0 0 7px #00f2a9a0);
  display: block;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  color: #F1ECE7;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin-top: 3px;
  background: #01FFF4;
  border-radius: 1px;
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-neon);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(92deg, #01FFF4 10%, #967054 88%);
  color: #25303B;
  text-transform: uppercase;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 0;
  border-radius: 7px;
  padding: 13px 36px;
  box-shadow: 0 4px 16px 0 rgba(1,255,244,0.11);
  margin-left: 18px;
  transition: box-shadow 0.15s, background 0.22s, color 0.22s;
  cursor: pointer;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #01FFF4;
  color: #1a242d;
  box-shadow: 0 6px 32px 0 #01fff54a;
  text-shadow: 0 0 6px #01969040;
}
.cta-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid #01FFF4;
  color: #01FFF4;
  text-transform: uppercase;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  padding: 10px 30px;
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin-top: 10px;
  transition: background 0.19s, color 0.12s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #01FFF4;
  color: #21242a;
}

/* --- Burger Button Styles --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #01FFF4;
  font-size: 2.5rem;
  padding: 7px 15px;
  cursor: pointer;
  z-index: 3002;
  position: relative;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus { outline: 2px dashed #01FFF4; outline-offset: 3px; }

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--color-bg-overlay);
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 3001;
  transform: translateX(-105%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.7,0,.5,1), opacity 0.22s linear;
  box-shadow: 12px 0 80px 0 #01FFF420;
  padding: 36px 26px 18px 32px;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #01FFF4;
  background: transparent;
  border: none;
  margin-bottom: 16px;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.18s;
}
.mobile-menu .mobile-menu-close:focus { outline: 2px dashed #01FFF4; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 12px 0;
  border-bottom: 1px solid #232E39;
  width: 100%;
  transition: color 0.13s;
  position: relative;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #01FFF4;
}

/* --- NAV RESPONSIVE --- */
@media (max-width: 1050px) {
  .main-nav { gap: 16px; }
  .cta-primary { margin-left: 7px; font-size: 0.9rem; padding: 11px 18px; }
}
@media (max-width: 900px) {
  .main-nav, .cta-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- Make sure overlays stack above site --- */
.mobile-menu { z-index: 4000; }
.mobile-menu.active { z-index: 4002; }

/* =====================================================
   HERO SECTION - TECH FUTURISTIC HIGHLIGHT
   ===================================================== */
.hero {
  padding: 60px 0 54px 0;
  border-radius: 0 0 44px 44px;
  background: linear-gradient(117deg,#25303B 45%,#16181d 100%);
  box-shadow: 0 0 128px 0 #01fff450;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.hero h1 {
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  color: #01FFF4;
  line-height: 1.08;
  text-shadow: 0 0 12px #00ffd4b3;
}
.hero p {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 26px;
  text-shadow: 0 0 11px #01595e38;
}
.hero .cta-primary {
  margin-top: 5px;
}

/* =====================================================
   FEATURE BLOCKS
   ===================================================== */
.features {
  background: linear-gradient(111deg, #1a242d 32%, #25303b 95%);
  border-radius: 17px;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.feature {
  flex: 1 1 200px;
  background: #242b34;
  border-radius: 13px;
  box-shadow: 0 1.5px 12px 0 rgba(1,255,244,0.08);
  padding: 26px 19px 17px 19px;
  color: #F1ECE7;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 210px;
  min-height: 200px;
  border-left: 4px solid var(--color-neon);
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature:hover {
  box-shadow: 0 5px 32px 0 #01fff426;
  transform: translateY(-3px) scale(1.025);
  border-left: 4px solid #00f2a9;
}
.feature img {
  width: 42px; width: 2.8rem; margin-bottom: 12px;
  filter: drop-shadow(0px 1px 8px #01FFF420);
}
.feature h3 {
  color: #01FFF4;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: linear-gradient(88deg, #21242a 56%, #25303b 96%);
  border-radius: 17px;
  padding-bottom: 50px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  /* already styled above for accessibility and legibility */
}
.testimonial-card p {
  color: #21242a;
  font-size: 1.07rem;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-card strong {
  color: #967054;
  font-weight: 700;
  font-size: 0.97rem;
  display: block;
}

/* =====================================================
   BADGES & TRUST ICONS
   ===================================================== */
.trust-badges, .vakmanschap-badges {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}
.trust-badges img, .vakmanschap-badges img {
  width: 44px; height: 44px; border-radius: 8px;
  background: #181A21;
  box-shadow: 0 1.5px 14px 0 rgba(1,255,244,0.09);
  border: 2px solid #25303B;
}

/* =====================================================
   CARDS & CONTENT LAYOUTS
   ===================================================== */
.card {
  background: #242b34;
  border-radius: 13px;
  box-shadow: 0 1.5px 22px 0 rgba(1,255,244,0.07);
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  color: #F1ECE7;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* =====================================================
   TABLES (Pricing Table)
   ===================================================== */
.pricing-table {
  width: 100%; margin: 24px 0;
  background: #21242a;
  border-radius: 11px;
  box-shadow: 0 1px 12px #01FFF420;
  color: #F1ECE7;
  border-collapse: collapse;
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 18px 18px;
  text-align: left;
  border-bottom: 1px solid #303842;
}
.pricing-table th {
  background: #25303B;
  color: #01FFF4;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.07rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* =====================================================
   FORMS & CONTACT DETAILS
   ===================================================== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 28px;
}
.contact-block {
  background: #242b34;
  border-radius: 10px;
  box-shadow: 0 1.5px 12px rgba(1,255,244,0.07);
  padding: 26px 20px 17px 20px;
  color: #E2E6ED;
  min-width: 210px;
  min-height: 120px;
}
.contact-block h2 {
  color: #01FFF4;
  font-size: 1.14rem;
  margin-bottom: 6px;
}
.contact-block a {
  color: #01FFF4;
  text-decoration: underline;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #16181d;
  color: #F1ECE7;
  border-top: 3px solid #01fff480;
  padding: 40px 0 25px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #01FFF4;
  opacity: 0.84;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.22s, opacity 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #967054;
  opacity: 1.0;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  color: #F1ECE7;
  font-size: 1rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 20px; height: 20px;
}
.footer-copy {
  font-size: 0.89rem;
  opacity: 0.77;
  margin-top: 12px;
  color: #CCCBC6;
}

/* =====================================================
   COOKIE CONSENT BANNER (Bottom Banner & Modal)
   ===================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 5010;
  background: linear-gradient(92deg, #25303B 70%, #21242a 100%);
  color: #F1ECE7;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  padding: 26px 30px 24px 30px;
  box-shadow: 0 -2px 32px 0 #01fff420;
  border-top: 2px solid #01FFF4;
  font-size: 1rem;
  animation: cookieBannerIn 0.45s cubic-bezier(.5,0,.3,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #01FFF4;
  color: #25303B;
  border: 0;
  border-radius: 7px;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 7px 23px;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.15s, color 0.13s, box-shadow 0.19s;
  box-shadow: 0 2px 11px #01fff420;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #00f2a9;
  color: #16181d;
  box-shadow: 0 4px 19px #01fff450;
}
.cookie-btn.reject {
  background: #EF476F;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #ad194d;
}
.cookie-btn.settings {
  background: transparent;
  color: #01FFF4;
  border: 2px solid #01FFF4;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #01FFF4;
  color: #181A21;
}

/* --- Cookie Modal Styles --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5050;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 24, 29, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #242b34;
  border-radius: 13px;
  max-width: 460px;
  width: 94vw;
  color: #F1ECE7;
  box-shadow: 0 8px 54px #01FFF420;
  padding: 38px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}
.cookie-modal h2 {
  font-size: 1.19rem;
  margin-bottom: 18px;
  color: #01FFF4;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0 13px 0;
  margin-bottom: 4px;
}
.cookie-modal .toggle {
  width: 40px; height: 22px;
  border-radius: 22px;
  background: #21242a;
  position: relative;
  cursor: pointer;
  border: 1.6px solid #01FFF4;
  transition: background 0.18s;
}
.cookie-modal .toggle input {
  opacity: 0; width: 0; height: 0; position: absolute; left: -100vw;
}
.cookie-modal .toggle .slider {
  position: absolute;
  width: 16px; height: 16px;
  left: 3.5px; top: 2.5px;
  background: #01FFF4;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-modal .toggle input:checked ~ .slider {
  left: 19.5px;
  background: #00f2a9;
}
.cookie-modal .toggle input:disabled ~ .slider {
  background: #8bcaca;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: transparent;
  color: #01FFF4;
  font-size: 1.44rem;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: #00f2a9;
}

/* =====================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ===================================================== */
@media (max-width: 1024px) {
  .container { max-width: 93vw; }
}
@media (max-width: 900px) {
  .main-nav, .cta-primary { display: none !important; }
  .footer-contact { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-nav { gap: 16px; }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 16px;
    padding: 0;
  }
  .section, .hero, .cta-banner, .cta-section, .features { padding: 28px 7px; }
  .hero h1 { font-size: 1.65rem; padding-right: 0; }
  .hero p { font-size: 1rem; }
  .feature-grid { flex-direction: column; gap: 18px; }
  .card-container, .testimonial-slider, .footer-contact { flex-direction: column; gap: 14px; }
  .contact-details { flex-direction: column; gap: 19px; }
  .footer-nav { flex-direction: column; gap: 9px; }
  .trust-badges, .vakmanschap-badges { gap: 16px; margin-top: 17px; }
  .section:not(:last-of-type):after { margin: 25px auto 0 auto; width: 72px; }
}
@media (max-width: 540px) {
  .container { padding: 0 6px; }
  .hero, .section, .cta-banner, .features { border-radius: 12px; padding: 16px 3px; }
  .feature img { width: 34px; }
  .testimonial-card { padding: 12px; border-radius: 10px; }
  .pricing-table th, .pricing-table td { padding: 9px 7px; }
  .cookie-consent-banner { padding: 19px 7px 17px 7px; font-size: 0.95rem; gap: 9px; }
  .cookie-modal { padding: 23px 10px 19px 10px; }
}

/* =====================================================
   MICRO-INTERACTIONS & SUBTLE FX
   ===================================================== */
a, .cta-primary, .cta-secondary, .feature, .card, .testimonial-card,
.mobile-nav a, .footer-nav a, .cookie-btn {
  transition: box-shadow 0.20s, color 0.23s, background 0.19s, border 0.16s, opacity 0.12s, transform 0.13s;
}

.cta-banner, .cta-section { text-align: center; }
.cta-banner p, .cta-section p {
  max-width: 650px;
  margin: 0 auto 10px auto;
}
.cta-banner .cta-primary,
.cta-section .cta-primary {
  margin-top: 13px;
  font-size: 1.09rem;
}

/* =====================================================
   LISTS & FAQ ACCORDIONS
   ===================================================== */
dl { margin-bottom: 18px; }
dt {
  font-weight: bold;
  color: #01FFF4;
  margin-top: 13px;
  font-size: 1.02rem;
}
dd { margin-left: 0; margin-bottom: 14px; }

/* =====================================================
   SPECIAL BLOCKS: THANK YOU, MAP ETC.
   ===================================================== */
.thankyou-section {
  background: linear-gradient(120deg,#21242a 78%,#1a242d 100%);
  border-radius: 15px;
  box-shadow: 0 1.5px 32px 0 #01fff420;
  padding: 60px 0 54px 0;
  margin: 40px auto 40px auto;
  text-align: center;
  color: #fff;
}

.map-section {
  background: #21242a;
  border-radius: 15px;
  margin-bottom: 44px;
  padding: 32px 17px 26px 17px;
  color: #F1ECE7;
  box-shadow: 0 2px 28px 0 rgba(1,255,244,0.06);
}

/* =====================================================
   REMOVE UNNECESSARY BROWSER STYLES ON ELEMENTS
   ===================================================== */
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* =====================================================
   FOCUS STATES FOR ACCESSIBILITY
   ===================================================== */
a:focus, button:focus {
  outline: 2px dashed var(--color-neon);
  outline-offset: 2px;
}

/* ===============================
   OVERFLOW PROTECTION
   =============================== */
.section, .card, .card-container, .feature, .testimonial-card,
.cta-banner, .footer-contact, .footer-nav, .testimonials {
  overflow: visible !important;
}

/* Hide cookie banner if JS adds class .hidden */
.cookie-consent-banner.hidden {
  display: none !important;
}
.cookie-modal-overlay.hidden {
  display: none !important;
}
