/* --------------------------------------------------
   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, 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 { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { line-height: 1.5; background: #10131a; color: #f6f7f9; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
img { max-width: 100%; display: block; border: 0; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
:focus { outline: none; }

/* --------------------------------------------------
   VARIABLES (Fallbacks provided for all custom props)
-------------------------------------------------- */
:root {
  --color-primary: #153759;
  --color-secondary: #E09E36;
  --color-accent: #F6F7F9;
  --color-dark: #10131a;
  --color-bg-gradient1: #12203e;
  --color-bg-gradient2: #1a2348;
  --color-fg: #f6f7f9;
  --neon-blue: #2ce5f6;
  --neon-yellow: #ffe45e;
  --neon-green: #23ffe5;
  --neon-orange: #fdb95d;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --shadow-elevate: 0 4px 32px 0 rgba(21, 55, 89, 0.18), 0 1.5px 6px 0 rgba(224, 158, 54, 0.07);
  --shadow-hover: 0 4px 32px 0 #2ce5f6cc, 0 1.5px 6px 0 #E09E3677;
  --radius-card: 18px;
  --radius-btn: 24px;
}

/* --------------------------------------------------
   BASE TYPOGRAPHY & LAYOUT
-------------------------------------------------- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body, 'Open Sans', Arial, Helvetica, sans-serif);
  font-size: 1rem;
  background: linear-gradient(145deg, var(--color-bg-gradient1), var(--color-bg-gradient2));
  color: var(--color-fg);
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
h1, h2, h3, h4 {
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  font-weight: bold;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  color: var(--color-fg);
}
p, li {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}
strong, b {
  color: var(--color-secondary);
}
ul, ol {
  margin-bottom: 18px;
}

/* --------------------------------------------------
   HEADER/NAVIGATION (Desktop & Mobile)
-------------------------------------------------- */
header {
  background: #12192a;
  box-shadow: 0 2px 16px 0 rgba(17, 25, 42, 0.27);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header img {
  height: 42px;
  filter: drop-shadow(0 2px 14px #15375970);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.18s cubic-bezier(.58,.01,.51,.95);
}
.main-nav a::after {
  content: '';
  height: 2px;
  width: 0%;
  background: var(--neon-blue);
  display: block;
  border-radius: 1px;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--neon-blue);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.cta-button {
  padding: 12px 32px;
  background: var(--neon-blue);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-left: 28px;
  box-shadow: 0 0 18px 0 #2ce5f6aa;
  transition: background 0.23s, color 0.23s, transform 0.2s;
  cursor: pointer;
  letter-spacing: 0.06em;
  outline: none;
  text-shadow: 0 1px 2px #fff7;
  position: relative;
  /* neon border glow */
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 0 24px 0 #ffe45e;
}

/* ----------  Burger menu button  ---------- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--neon-blue);
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
}

/* ----------  Mobile Nav (overlayed slide-in) ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 19, 26, 0.975);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  transform: translateX(100%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 0 0px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--neon-blue);
  border: none;
  font-size: 2.4rem;
  margin: 38px 38px 0 0;
  cursor: pointer;
  z-index: 1201;
}
.mobile-nav {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding-right: 50px;
  width: 85vw;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 8px 0;
  letter-spacing: 0.04em;
  border-right: 3px solid transparent;
  transition: border 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  border-right: 3px solid var(--color-secondary);
}

/* --------------------------------------------------
   HERO SECTION & PAGE LAYOUT SECTIONS
-------------------------------------------------- */
.hero, .thank-you-hero, .hero-contact {
  background: linear-gradient(133deg, #153759 0%, #1a2348 100%);
  border-bottom: 1.5px solid #2ce5f666;
}
.hero .container, .thank-you-hero .container, .hero-contact .container {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper, .thank-you-hero .content-wrapper, .hero-contact .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 0 36px 0;
}

.section, .about-section, .feature-section, .services-overview, .contact-details-section, .gdpr-info, .cookie-policy, .terms-of-use, .privacy-policy, .about-sustainability, .about-news, .services-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(123deg, #181f2a 56%, #203469 100%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
}
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #18233a;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
}

/* All cards container flex spacing */
.card-container,
.card-grid,
.feature-grid,
.solution-grid,
.service-link-grid,
.service-icons,
.benefit-grid,
.initiatives-grid,
.testimonial-slider,
.testimonial-grid,
.news-grid,
.contact-info-grid,
.initiatives-grid,
.company-strengths,
.contact-info-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.card, .feature-item, .service-link, .service-item, .benefit-item, .initiative-item, .news-item {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  min-width: 240px;
  background: #162138;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
  padding: 28px 24px 24px 24px;
  transition: box-shadow 0.21s, transform 0.21s;
  border: 1.5px solid #1d415f;
}
.card:hover, .feature-item:hover, .service-link:hover, .service-item:hover, .benefit-item:hover, .initiative-item:hover, .news-item:hover {
  box-shadow: var(--shadow-hover);
  border: 1.5px solid var(--neon-blue);
  transform: translateY(-3px) scale(1.012);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.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: #F6F7F9;
  color: #10131a;
  border-radius: 20px;
  min-width: 240px;
  max-width: 370px;
  box-shadow: 0 2px 24px 0 #15375922, 0 1.5px 6px 0 #E09E3677;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
  border-left: 3.5px solid var(--color-secondary);
}
.testimonial-card p {
  color: #10131a;
  font-size: 1.05rem;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 0 20px #ffe45e77;
  transform: scale(1.02);
}

/* Logos inside client-logos wrapper */
.client-logos {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.client-logos img {
  height: 50px;
  filter: drop-shadow(0 0 8px #e8ff95);
}

/* Feature accordion/list blocks */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
  color: var(--color-accent);
}
.brand-story, .leadership-intro {
  background: #12203e;
  border-radius: 16px;
  padding: 23px 26px;
  box-shadow: 0 0 10px #2ce5f620;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Service/benefit Grid */
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.benefit-item {
  background: #203366;
  color: var(--color-accent);
  border-radius: 14px;
  padding: 18px 24px;
  min-width: 210px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-elevate);
  border-left: 3px solid var(--neon-blue);
  transition: border-color 0.17s, box-shadow 0.17s;
}
.benefit-item:hover {
  border-left: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-hover);
}

/* Contact Info Grid */
.contact-info-grid, .contact-info-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  margin-bottom: 20px;
}
.contact-info-grid > div, .contact-detail-block {
  flex: 1 1 260px;
  background: #17243a;
  color: var(--color-accent);
  padding: 15px 18px 15px 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-elevate);
}
.contact-info-grid img, .contact-detail-block img {
  width: 30px; height: 30px;
}

.contact-cta, .contact .cta-button { margin-top: 20px; }

/* About-Sustainability, About-News special sections */
.about-sustainability, .about-news {
  background: #162138;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/****************************************************
  FOOTER
****************************************************/
footer {
  background: #11223b;
  color: var(--color-accent);
  padding: 0 0 0 0;
}
footer .container {
  padding: 0 20px;
  max-width: 1220px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1.5px solid #2ce5f633;
  padding: 32px 0 24px 0;
}
.footer-top a img {
  height: 38px; margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 220px;
}
.footer-nav a {
  color: var(--color-accent);
  font-size: 0.95rem;
  transition: color 0.19s;
  opacity: 0.82;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon-blue);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 22px; height: 22px; margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}
.footer-social a img {
  height: 27px; filter: brightness(1.2) drop-shadow(0 0 6px #2ce5f6cc);
  transition: filter 0.2s;
}
.footer-social a:hover img { filter: brightness(1.8) drop-shadow(0 0 14px var(--neon-blue)); }

.footer-bottom {
  text-align: center;
  font-size: 0.97rem;
  color: #b2bbc6;
  padding: 14px 0 32px 0;
}

/* --------------------------------------------------
  UTILITY FLEX CLASSES FOR LAYOUT
-------------------------------------------------- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-link-grid, .service-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/****************************************************
   BUTTONS, LINKS, FORM CONTROLS
****************************************************/
button, .cta-button, input[type='submit'] {
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
}
button:focus, .cta-button:focus, input[type='submit']:focus {
  outline: 2px solid var(--neon-blue);
}

/* Microinteractions for all clickable cards/links */
a, .card, .cta-button, button {
  transition: filter 0.15s, color 0.18s, background 0.2s, border 0.18s;
}
a:active, .cta-button:active { filter: brightness(0.85); }

/****************************************************
   COOKIE CONSENT BANNER & MODAL
****************************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #10131aee;
  color: var(--color-accent);
  box-shadow: 0 -2px 32px 0 #15375944;
  z-index: 2001;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 22px 16px 18px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-top: 3.5px solid var(--color-secondary);
  transition: transform 0.32s cubic-bezier(.65,0,.17,1.02), opacity 0.24s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 380px;
  min-width: 260px;
  color: var(--color-accent);
  margin-right: 22px;
}
.cookie-banner .cookie-action-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 9px 24px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-right: 2px;
  box-shadow: 0 0 15px #2ce5f633;
  background: var(--color-secondary);
  color: #10131a;
}
.cookie-btn.accept {
  background: var(--neon-blue);
  color: #10131a;
}
.cookie-btn.settings {
  background: transparent;
  border: 1.7px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-btn.reject {
  background: #1c2535;
  color: var(--color-accent);
  border: 1.7px solid #bbb;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.09) drop-shadow(0 1px 8px #ffe45e);
  background: var(--color-accent);
  color: var(--color-dark);
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%) scale(1);
  background: #162138;
  color: var(--color-accent);
  box-shadow: 0 6px 54px 0 #15375970;
  z-index: 2100;
  width: 95vw;
  max-width: 410px;
  border-radius: var(--radius-card);
  padding: 30px 36px 16px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  transition: transform 0.29s cubic-bezier(.65,0,.18,1.05), opacity 0.29s;
}
.cookie-modal.hide {
  transform: translate(-50%, 15%) scale(0.76);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal h2 {
  color: var(--color-secondary);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 13px;
  background: #16257a;
  border: 1.2px solid var(--neon-blue);
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle.active {
  background: var(--neon-blue);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3.3px;
  top: 2.5px;
  width: 18px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 11px;
  box-shadow: 0 1px 7px #2ce5f6bb;
  transition: left 0.17s;
}
.cookie-modal .cookie-toggle.active::before {
  left: 16.6px;
}
.cookie-modal .cookie-toggle[disabled], .cookie-modal .cookie-toggle[aria-disabled='true'] {
  background: #253759;
  cursor: default;
}
.cookie-modal .cookie-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  min-width: 115px;
  font-size: 1rem;
}

/* Modal overlay if needed */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #08101a55;
  z-index: 2099;
  transition: opacity 0.24s;
  opacity: 1;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }

/****************************************************
  RESPONSIVE & BREAKPOINTS
****************************************************/
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .main-nav { gap: 16px; }
  .card, .feature-item, .benefit-item, .service-item, .service-link, .testimonial-card { min-width: 200px; }
  .footer-nav, .footer-contact { gap: 8px; }
  .contact-info-grid > div { min-width: 170px; }
}

@media (max-width: 768px) {
  body { font-size: 0.97rem; }
  .container { padding: 0 10px; }
  .main-nav { display: none; }
  .cta-button { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
  header .container { flex-direction: row; }
  .section, .about-section, .feature-section, .services-overview, .contact-details-section, .gdpr-info, .cookie-policy, .terms-of-use, .privacy-policy, .about-sustainability, .about-news, .services-section {
    padding: 28px 7px;
  }
  .feature-grid, .solution-grid, .testimonial-slider, .service-link-grid, .service-icons, .card-container, .benefit-grid, .contact-info-grid, .content-grid, .testimonial-grid, .initiatives-grid, .contact-info-fields, .news-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .features, .about-section, .feature-section, .services-overview {
    margin-bottom: 40px;
    border-radius: 14px;
  }
  .brand-story, .leadership-intro {
    padding: 12px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .footer-top { flex-direction: column; gap: 18px; padding: 24px 0 12px 0; }
  .footer-social { margin-top: 2px; }
  .footer-nav { gap: 7px; }
  .client-logos { gap: 14px; }
  .cookie-banner { flex-direction: column; gap: 18px; padding: 16px 12px; }
  .cookie-banner .cookie-banner-text { margin-right: 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.16rem; }
  h3 { font-size: 1.01rem; }
  .cta-button, .cookie-btn { padding: 11px 16px; font-size: 0.98rem; }
  .brand-story, .leadership-intro, .benefit-item { padding: 12px 9px; }
  .footer-top, .footer-nav, .footer-contact { gap: 7px; }
  .footer-bottom { padding-bottom: 18px; }
}

/****************************************************
   SCROLLBAR, SELECTION, MISC. STYLES
****************************************************/
::-webkit-scrollbar {
  width: 8px; background: #17243a;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}
::selection { background: #2ce5f6; color: #10131a; }

/****************************************************
   ANIMATIONS & TRANSITIONS
****************************************************/
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(45px); }
  100% { opacity: 1; transform: translateX(0); }
}
.section, .about-section, .features, .company-strengths, .footer-top, .testimonial-slider, .testimonial-card, .feature-item, .service-item, .content-wrapper, .solution-grid, .benefit-grid, .service-link {
  animation: fadeInUp 0.66s cubic-bezier(.37,.01,.47,1.02);
}

/****************************************************
   ACCESSIBILITY: FOCUS & CONTRAST
****************************************************/
a:focus, button:focus, .cta-button:focus {
  box-shadow: 0 0 0 3px #2ce5f688 inset;
  outline: none;
}

/****************************************************
   SPECIALS: ICON HIGHLIGHTS (e.g. .icon-highlights)
****************************************************/
.icon-highlights {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  font-size: 1.01rem;
}
.icon-highlights img {
  height: 36px;
  filter: drop-shadow(0 1px 9px #ffe45e99);
}
.icon-highlights span {
  color: var(--neon-yellow);
  font-weight: 600;
}

/****************************************************
   FORM (if any contact forms in future)
****************************************************/
input[type='text'], input[type='email'], textarea {
  color: #153759;
  background: #eaf3f5;
  border: 1.5px solid #15375942;
  border-radius: 8px;
  padding: 11px 10px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 14px;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  border-color: var(--color-secondary);
}

/****************************************************
   PRINT STYLES (optional, for policies)
****************************************************/
@media print {
  header, .mobile-menu, .footer-top, .footer-bottom, .cta-button, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
}
