/* ===================================================================
   GLOBAL STAGE MASTERY - Scandinavian Clean Responsive Flexbox Styles
   ===================================================================
   - Only Flexbox layouts (no grid/columns)
   - Scandinavian-inspired: Light, clean, soft, functional
   - Mobile-first with fluid transitions and clear hierarchy
   ===================================================================
*/

/* ===== CSS RESET & BASE NORMALIZATION ===== */
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;
  scroll-behavior: smooth;
}
body {
  background: #F5F6FA;
  color: #232A2F;
  line-height: 1.7;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #12407C;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus, a:hover {
  color: #BA4000;
  text-decoration: underline;
}

/* ===== FONT FAMILY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #12407C;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232A2F;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
em {
  color: #56606A;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  padding: 30px 0 0 0;
  background: none;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 16px rgba(25,54,81,0.10);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header nav a {
  color: #12407C;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 3px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #F5F6FA;
  color: #BA4000;
}
.cta-btn {
  background: #12407C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 10px 32px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(25,54,81,0.08);
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin-left: 20px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
}
.cta-btn:focus, .cta-btn:hover {
  background: #BA4000;
  color: #fff;
  box-shadow: 0 4px 20px rgba(186,64,0,0.11);
  transform: translateY(-2px) scale(1.02);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: flex;
  background: transparent;
  color: #12407C;
  font-size: 2.2rem;
  border: 0;
  margin-left: 12px;
  cursor: pointer;
  align-items: center;
  padding: 2px 8px 2px 8px;
  border-radius: 4px;
  transition: background 0.15s;
  z-index: 1021;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F5F6FA;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FFFFFF;
  box-shadow: 0 0 40px rgba(18,64,124,0.08);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.79,.14,.15,.86), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #12407C;
  font-size: 2rem;
  margin: 20px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 4px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F5F6FA;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 40px 0 0 24px;
  width: 80vw;
}
.mobile-menu .mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #12407C;
  background: none;
  padding: 12px 0px;
  border-radius: 6px;
  transition: color 0.18s, background 0.13s;
}
.mobile-menu .mobile-nav a:focus, .mobile-menu .mobile-nav a:hover {
  color: #BA4000;
  background: #F5F6FA;
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav, .cta-btn {
    display: flex !important;
  }
}
@media (max-width: 991px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* ===== MAIN & FLEX CONTAINERS ===== */
main {
  width: 100%;
  min-height: 60vh;
  margin-top: 0;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(25,54,81,0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px 18px 20px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFFFFF;
  border-left: 6px solid #12407C;
  border-radius: 10px;
  padding: 20px 22px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(25,54,81,0.06);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 26px rgba(25,54,81,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section:last-child {
  margin-bottom: 0;
}

/* ===== HERO SECTIONS & CTA BANNERS ===== */
.hero {
  background: #FFFFFF;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 2px 24px rgba(18,64,124,0.07);
  padding-top: 50px;
  min-height: 320px;
  margin-bottom: 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
  margin: 0 auto;
}
.cta-banner {
  background: #12407C;
  color: #fff;
  border-radius: 16px;
  margin-top: 36px;
  margin-bottom: 44px;
  box-shadow: 0 6px 26px rgba(18,64,124,0.11);
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta-banner .cta-btn {
  background: #FFFFFF;
  color: #12407C;
  margin-left: 0;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #BA4000;
  color: #fff;
}

/* ===== FEATURES & SERVICE OVERVIEW ===== */
.features {
  background: #F5F6FA;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  list-style: none;
  padding: 0;
}
.features .feature-grid li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 11px rgba(25,54,81,0.06);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-basis: 310px;
  flex-grow: 1;
  min-width: 240px;
  max-width: calc(48% - 24px);
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.features .feature-grid li:hover {
  box-shadow: 0 6px 32px rgba(25,54,81,0.14);
  transform: translateY(-2px);
}
.features .feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: brightness(0.85);
}

.services-overview .service-briefs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}
.services-overview .service-briefs li {
  padding: 18px 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(25,54,81,0.03);
  font-size: 1rem;
  color: #232A2F;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.services-overview .price {
  color: #12407C;
  font-weight: bold;
  margin-left: 14px;
}

/* ===== SERVICE PAGE: FULL SERVICE LIST ===== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  list-style: none;
}
.service-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(25,54,81,0.04);
  padding: 26px 20px 18px 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list h2 {
  color: #12407C;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #F5F6FA;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(25,54,81,0.02);
  padding: 16px 16px 10px 16px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: box-shadow 0.13s, background 0.16s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 5px 18px rgba(25,54,81,0.09);
  background: #FFFFFF;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  margin-bottom: 8px;
  color: #12407C;
  font-weight: 600;
}

/* ===== RESOURCE LIBRARY ===== */
.resource-library ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.resource-library ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(25,54,81,0.03);
  padding: 22px 20px 14px 20px;
  margin-bottom: 10px;
}
.resource-library a {
  display: inline-block;
  margin-top: 10px;
  color: #BA4000;
  font-weight: 600;
  background: #F5F6FA;
  padding: 8px 17px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(25,54,81,0.06);
  transition: background 0.16s, color 0.16s;
}
.resource-library a:hover, .resource-library a:focus {
  background: #BA4000;
  color: #fff;
}

/* ===== VIDEO GUIDES ===== */
.video-guides ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ===== WORKSHOP LIST ===== */
.workshop-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.workshop-list li {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 7px rgba(25,54,81,0.04);
  padding: 18px 18px 14px 18px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workshop-list .cta-btn {
  margin-top: 7px;
  margin-left: 0;
}

/* ===== CASE STUDIES & QUOTES ===== */
.case-study {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(25,54,81,0.04);
  padding: 24px 20px 14px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quotes .testimonial-card {
  margin-bottom: 14px;
}

/* ===== CONTACT INFO ===== */
.contact-info ul {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info strong {
  font-weight: 700;
  color: #12407C;
}

/* ===== POLICY SECTION ===== */
.policy {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(25,54,81,0.06);
}
.policy h2 {
  font-size: 1.16rem;
  margin-bottom: 9px;
  margin-top: 19px;
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation {
  text-align: center;
  padding-top: 40px !important;
  padding-bottom: 48px !important;
}
.confirmation .cta-btn {
  margin: 24px auto 0 auto;
}

/* ===== FOOTER ===== */
footer {
  background: #FFFFFF;
  border-top: 1.5px solid #E1E5ED;
  padding: 32px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
  padding: 0 18px 22px 18px;
}
.footer-logo {
  flex: 1 0 110px;
  min-width: 110px;
  display: flex;
  align-items: flex-start;
}
.footer-contact {
  flex: 2 1 260px;
  font-size: 0.98rem;
  color: #232A2F;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav {
  flex: 1 0 170px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 8px;
}
.footer-nav a {
  font-size: 0.97rem;
  color: #12407C;
  transition: color 0.15s, font-weight 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #BA4000;
  font-weight: 600;
}
.footer-social {
  flex: 1 0 110px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  filter: grayscale(0.1) brightness(0.94);
  transition: filter 0.17s, transform 0.16s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: none;
  transform: scale(1.12);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 16px 20px 16px;
  }
}
@media (max-width:768px) {
  .content-wrapper, .container { padding: 0 9px; }
  .footer-logo, .footer-contact, .footer-nav, .footer-social {
    flex: 1 0 99%;
    margin: 0 0 10px 0;
  }
}

/* ===== BUTTONS ===== */
button, .cta-btn, .mobile-menu-close, .mobile-menu-toggle {
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #BA4000;
  outline-offset: 1px;
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFFFFF;
  border-top: 2px solid #E1E5ED;
  box-shadow: 0 -4px 32px rgba(18,64,124,0.08);
  padding: 28px 20px 24px 20px;
  z-index: 4800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  transition: transform 0.32s, opacity 0.18s;
  opacity: 1;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #232A2F;
  text-align: center;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  background: #12407C;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 9px 26px;
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  transition: background 0.13s, color 0.13s, box-shadow 0.16s, transform 0.12s;
}
.cookie-reject {
  background: #F5F6FA;
  color: #12407C;
  border: 1px solid #12407C;
}
.cookie-settings {
  background: #BA4000;
}
.cookie-btns button:focus,
.cookie-btns button:hover {
  filter: brightness(1.05);
  outline: 2px solid #D06324;
  outline-offset: 1px;
  transform: translateY(-2px) scale(1.03);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100vh);
  width: 95vw;
  max-width: 440px;
  background: #fff;
  border-radius: 13px 13px 0 0;
  box-shadow: 0 -8px 40px rgba(25,54,81,0.19);
  z-index: 4900;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 30px 24px 30px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s, opacity 0.21s;
}
.cookie-modal.open {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.1rem;
  color: #12407C;
  margin-bottom: 4px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232A2F;
  font-weight: 500;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #12407C;
  width: 18px;
  height: 18px;
  border-radius: 3px;
}
.cookie-modal .modal-footer {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-footer button {
  font-size: 1rem;
  border-radius: 18px;
  padding: 10px 28px;
  border: none;
  cursor: pointer;
  background: #12407C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.19s, color 0.18s;
}
.cookie-modal .modal-footer button.cancel {
  background: #F5F6FA;
  color: #12407C;
  border: 1px solid #12407C;
}
.cookie-modal .modal-footer button.cancel:hover,
.cookie-modal .modal-footer button.cancel:focus {
  background: #12407C;
  color: #fff;
}
.cookie-modal .modal-footer button.save:hover,
.cookie-modal .modal-footer button.save:focus {
  background: #BA4000;
  color: #fff;
}

/* ===== FORMS STYLES (if present) ===== */
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  border: 1px solid #C9D2E7;
  background: #fff;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.18s, box-shadow 0.16s;
  color: #232A2F;
}
input:focus, textarea:focus {
  border-color: #12407C;
  box-shadow: 0 2px 12px rgba(18,64,124,0.09);
}

/* ===== TYPOGRAPHY SCALE & WHITE SPACE ===== */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}
section:not(:last-child) {
  margin-bottom: 60px;
}

/* ===== RESPONSIVE ADAPTATIONS ===== */
@media (max-width: 1024px) {
  .features .feature-grid li,
  .card {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 99%;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .cta-btn { padding: 10px 18px; font-size: 1rem; }
  section, .section { padding: 26px 10px; }
  .footer-logo img { width: 88px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  .hero, .cta-banner { padding-top: 28px; padding-bottom: 20px; border-radius: 0 0 12px 12px; }
  .content-wrapper { gap: 14px; }
  .testimonial-card { padding: 16px 9px 14px 12px; }
  .features .feature-grid { flex-direction: column; gap: 18px; }
  .features .feature-grid li { max-width: 100%; min-width: 120px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .container { padding: 0 6px; }
  footer .container { flex-direction: column; gap: 12px; }
  .card-container { gap: 10px; }
  .card { padding: 14px 8px 10px 10px; }
  .case-study { padding: 15px 7px 10px 11px; }
  .services-overview .service-briefs li {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .footer-contact, .footer-nav, .footer-social { margin: 0 0 6px 0; }
}
@media (max-width: 600px) {
  .cookie-modal { padding: 20px 6vw 12px 6vw; }
}
@media (max-width: 430px) {
  .cookie-modal { padding: 10px 2vw 8px 2vw; }
}

/* ===== Z-INDEX UTILITY ===== */
.header { z-index: 990; }
.mobile-menu { z-index: 2001; }
.cookie-banner { z-index: 4800; }
.cookie-modal { z-index: 4900; }

/* ===== MICRO-INTERACTIONS (button, card, menu) ===== */
.card, .case-study,
.features .feature-grid li, .service-list li, .resource-library ul li, .workshop-list li {
  transition: box-shadow 0.16s, transform 0.11s, background 0.12s;
}
.card:hover, .card:focus-within,
.case-study:hover, .case-study:focus-within,
.features .feature-grid li:hover, .features .feature-grid li:focus-within,
.service-list li:hover, .service-list li:focus-within,
.resource-library ul li:hover, .resource-library ul li:focus-within,
.workshop-list li:hover, .workshop-list li:focus-within {
  box-shadow: 0 6px 18px rgba(25,54,81,0.12);
  transform: translateY(-2px);
}

/* ===== SCROLLBAR STYLES (for webkit) ===== */
::-webkit-scrollbar {
  background: #F5F6FA;
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #E1E5ED;
  border-radius: 8px;
}

/* ===== CUSTOM SELECTION ===== */
::selection {
  background: #12407C;
  color: #fff;
}

/* ===== UTILITIES & FIXES ===== */
.hide { display: none !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* ===== PRINT OPTIMIZATION ===== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  section, main, .section, .content-wrapper, .container { color: #232A2F !important; background: #fff !important; box-shadow: none !important; }
}
