/* ======================================================================
   CSS RESET & BASELINE STYLES 
   ====================================================================== */
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, main, header, footer, section, article, aside, nav, figure, figcaption, details, summary, mark, time, textarea, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
  background: none;
}
*, *::before, *::after {
  box-sizing: inherit;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  color: #181818;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
  vertical-align: middle;
}
a {
  color: #252446;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E5C188;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* ======================================================================
   TYPOGRAPHY – SOPHISTICATED MONOCHROME ELEGANCE 
   ====================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #252446;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #252446;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.875rem;
}

/* Visual Hierarchy with contrast */
h1, h2 {
  color: #161622;
  text-shadow: 0 2px 8px rgba(37,36,70,0.05);
}
h3, h4 {
  color: #2c2b36;
}

/* ======================================================================
   LAYOUT CONTAINERS & STRUCTURAL STYLES
   ====================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

/* ======================================================================
   HEADER & NAVIGATION
   ====================================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 2px 16px rgba(37,36,70,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #252446;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: #252446;
  color: #fff;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #252446;
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-left: 24px;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  box-shadow: 0 3px 12px 0 rgba(37, 36, 70, 0.10);
  border: 1.5px solid #252446;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #252446;
  border: 1.5px solid #E5C188;
  box-shadow: 0 6px 18px 0 rgba(37,36,70,0.12); 
}

/* ======================================================================
   RESPONSIVE NAVIGATION / MOBILE MENU
   ====================================================================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #252446;
  cursor: pointer;
  margin-left: 30px;
  z-index: 121;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #E5C188;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 325px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -16px 0 38px rgba(36,36,36,0.14);
  z-index: 2003;
  display: flex;
  flex-direction: column;
  padding: 32px 32px 24px 32px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #252446;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 2011;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E5C188;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 500;
  color: #252446;
  background: none;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #252446;
  color: #fff;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px;
    padding: 10px 14px;
  }
  .cta-btn {
    margin-left: 4px;
    font-size: 0.97rem;
    padding: 8px 16px;
  }
}
@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}


/* ======================================================================
   HERO SECTIONS
   ====================================================================== */
.hero {
  background: #f8f8fa;
  padding: 56px 0 60px 0;
  margin-bottom: 50px;
  box-shadow: 0 5px 42px rgba(37,36,70,0.06);
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  align-items: flex-start;
}
.hero h1 {
  color: #181818;
  margin-bottom: 12px;
  font-size: 2.7rem;
}
.hero p {
  color: #252446;
  opacity: 0.97;
  margin-bottom: 28px;
  font-size: 1.17rem;
  line-height: 1.6;
}
.hero .cta-btn {
  font-size: 1.09rem;
}

@media (max-width: 600px) {
  .hero {
    padding: 36px 0 28px 0;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

/* ======================================================================
   FEATURES & CARDS
   ====================================================================== */
.features {
  background: #fff;
  margin-bottom: 60px;
  padding-top: 42px;
  padding-bottom: 36px;
  box-shadow: 0px 1px 1.5px rgba(37,36,70,0.04);
}
.features .content-wrapper {
  gap: 30px;
}
.features h2 {
  margin-bottom: 14px;
}
.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.feature-grid > div {
  background: #FAFAFB;
  border-radius: 18px;
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  box-shadow: 0 7px 28px rgba(37,36,70,0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.24s;
  gap: 15px;
}
.feature-grid > div:hover {
  box-shadow: 0 17px 36px rgba(37,36,70,0.11);
  transform: translateY(-6px) scale(1.02);
}
.feature-grid img {
  width: 42px;
  height: 42px;
}
.feature-grid h3 {
  margin-bottom: 6px;
  font-size: 1.23rem;
  color: #252446;
}
.feature-grid p {
  line-height: 1.6;
  font-size: 0.98rem;
  color: #262626;
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 170px;
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
  }
  .feature-grid > div {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    padding: 20px 14px 18px 14px;
  }
}

/* Feature List for tile lists (for events, publications etc.) */
.features ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

/* ======================================================================
   ABOUT/PREVIEW/CARDS
   ====================================================================== */
.about-preview, .about-story, .contact-brief, .services, .team, .location {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 3px 22px rgba(37,36,70,0.11);
  margin-bottom: 60px;
}
.about-preview h2, .about-story h2, .contact-brief h2, .services h2, .team h2, .location h2 {
  color: #1c1c22;
  margin-bottom: 18px;
}
.about-preview ul, .about-story ul, .services ul, .team ul, .contact-brief ul, .location ul {
  margin-bottom: 10px;
  padding-left: 22px;
}
.about-preview li, .about-story li, .services li, .team li, .contact-brief li, .location li {
  margin-bottom: 10px;
  line-height: 1.52;
  color: #252446;
}
.partners {
  margin-top: 18px;
  color: #656577;
  font-size: 0.98rem;
  letter-spacing: 0.1px;
  font-style: italic;
}

@media (max-width: 600px) {
  .about-preview, .about-story, .contact-brief, .services, .team, .location {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 13px;
  }
}

/* ======================================================================
   TESTIMONIALS
   ====================================================================== */
.testimonials {
  background: #FBFBFC;
  padding: 38px 0 46px 0;
  border-radius: 16px;
  box-shadow: 0 2px 32px rgba(37,36,70,0.09);
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonials h2 {
  color: #161622;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 4px 17px rgba(37,36,70,0.08);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 650px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(37,36,70,0.14);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-card p {
  color: #252446;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card span {
  color: #504d35;
  font-size: 0.95rem;
  margin-left: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  opacity: 0.93;
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
    gap: 10px;
    min-width: unset;
    max-width: 100%;
  }
}

/* ======================================================================
   CARDS & CARD CONTAINERS
   ====================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 38px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(37,36,70,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 18px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 260px;
  transition: box-shadow 0.21s, transform 0.18s;
  gap: 16px;
}
.card:hover {
  box-shadow: 0 9px 28px rgba(37,36,70,0.14);
  transform: translateY(-4px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

/* ======================================================================
   LAYOUT UTILITIES – FLEXBOX PATTERNS
   ====================================================================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* ======================================================================
   FOOTER
   ====================================================================== */
footer {
  background: #252446;
  color: #fff;
  padding: 40px 0 24px 0;
  box-shadow: 0 -2px 12px rgba(37,36,70,0.10);
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #E5C188;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.88;
  border-radius: 4px;
  padding: 5px 14px;
  transition: background 0.19s, color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #E5C188;
  color: #252446;
}
.footer-legal {
  font-size: 0.98rem;
  color: #CBCBCF;
  opacity: 0.94;
  text-align: center;
}
@media (max-width: 700px) {
  .footer-menu {
    gap: 10px;
    flex-wrap: wrap;
  }
  footer {
    padding: 24px 0 14px 0;
  }
}

/* ======================================================================
   FORMS, CTA, BUTTONS
   ====================================================================== */
input, textarea, select {
  background: #FAFAFA;
  border: 1px solid #d6d6d9;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  outline: none;
  margin-bottom: 16px;
  color: #252446;
  transition: border 0.14s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #E5C188;
  box-shadow: 0 2px 8px rgba(229,193,136,0.10);
}
button, .button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #252446;
  color: #fff;
  padding: 11px 26px;
  border-radius: 20px;
  border: none;
  font-size: 1.06rem;
  font-weight: 500;
  transition: background 0.19s, color 0.19s, box-shadow 0.15s;
  cursor: pointer;
}
button:focus, button:hover, .button:focus, .button:hover {
  background: #E5C188;
  color: #252446;
  outline: none;
  box-shadow: 0 4px 15px 0 rgba(229,193,136,0.22);
}

/* ======================================================================
   ICONS in contact/service sections
   ====================================================================== */
.contact-brief ul img, .contact ul img, .operating-hours img, .location ul img {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
}
.operating-hours {
  margin: 10px 0 14px 0;
  color: #252446;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
}

/* ======================================================================
   COOKIES CONSENT BANNER + MODAL
   ====================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 10501;
  display: flex;
  justify-content: center;
  background: #252446;
  color: #fff;
  padding: 22px 10px 20px 10px;
  box-shadow: 0 -4px 24px rgba(37,36,70,0.13);
  font-size: 1rem;
  transition: transform 0.33s;
  gap: 32px;
  align-items: center;
}
.cookie-banner .cookie-text {
  flex: 1 1 400px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  background: #E5C188;
  color: #252446;
  border: none;
  border-radius: 20px;
  padding: 10px 23px;
  font-size: 0.99rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
  cursor: pointer;
  margin-right: 2px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #252446;
  box-shadow: 0 2px 9px rgba(229,193,136,0.10);
}
.cookie-btn.reject {
  background: #181818;
  color: #fff;
  border: 1px solid #CBCBCF;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #252446;
  border: 1px solid #E5C188;
}
.cookie-btn.settings {
  background: transparent;
  color: #E5C188;
  border: 1.5px solid #E5C188;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E5C188;
  color: #252446;
}

@media (max-width: 740px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 18px 12px 16px 12px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 20050;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(37,36,70,0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  max-width: 440px;
  min-width: 270px;
  width: 94vw;
  box-shadow: 0 7px 42px rgba(37,36,70,0.32);
  padding: 34px 28px 24px 28px;
  margin: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.32s cubic-bezier(0.5,0.2,0.37,1);
}
@keyframes modalIn {
  0% { transform: scale(0.92) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #252446;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category .cookie-toggle {
  width: 38px;
  height: 20px;
  background: #e6e6eb;
  border-radius: 10px;
  position: relative;
}
.cookie-category .cookie-toggle input[type=checkbox] {
  opacity: 0; width: 0; height: 0;
}
.cookie-category .cookie-toggle .slider {
  position: absolute;
  top: 2px; left: 2px;
  height: 16px;
  width: 16px;
  background: #CBCBCF;
  border-radius: 50%;
  transition: left 0.19s, background 0.16s;
}
.cookie-category .cookie-toggle input[type=checkbox]:checked + .slider {
  left: 20px;
  background: #E5C188;
}
.cookie-category span {
  font-size: 0.99rem;
  color: #252446;
}
.cookie-category.essential {
  opacity: 0.55;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #252446;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #E5C188;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 8px 10px 8px;
    border-radius: 8px;
    min-width: 0;
  }
}

/* ======================================================================
   CTA Section
   ====================================================================== */
.cta {
  background: #252446;
  color: #fff;
  border-radius: 16px;
  padding: 44px 0 40px 0;
  margin-bottom: 60px;
  box-shadow: 0 3px 22px rgba(37,36,70,0.12);
}
.cta h2,
.cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #E5C188;
  color: #252446;
  margin-top: 24px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #fff;
  color: #252446;
  border-color: #252446;
}

/* CTA links */
.cta ul li a {
  text-decoration: underline;
  padding: 4px 7px;
  color: #fff;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.cta ul li a:hover {
  background: #fff;
  color: #252446;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .cta {
    padding: 22px 0 14px 0;
    margin-bottom: 28px;
    border-radius: 10px;
  }
}

/* ======================================================================
   MONOCHROME STYLE MICRO-INTERACTIONS & SHADOWS
   ====================================================================== */
.card, .testimonial-card, .feature-grid > div, .cookie-modal {
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .cookie-modal:focus-within {
  box-shadow: 0 8px 44px rgba(37,36,70,0.13);
  transform: translateY(-4px) scale(1.012);
}

/* Subtle monochrome dividers and headings */
hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 32px 0;
}

/* ======================================================================
   RESPONSIVE OVERRIDES – Mobile First
   ====================================================================== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 6vw;
  }
  .content-wrapper {
    padding: 0;
    gap: 12px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  html, body {
    font-size: 15px;
  }
  .hero h1, .section h1 {
    font-size: 1.52rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .container {
    padding: 0 4vw;
  }
  .section {
    margin-bottom: 28px;
    padding: 20px 2px;
    border-radius: 7px;
  }
}


/* ======================================================================
   UTILITY CLASSES
   ====================================================================== */
.hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.gap-16 {
  gap: 16px;
}
gap-24 {
  gap: 24px;
}
.bold {
  font-weight: 700;
}

/* For accessibility focus ring */
:focus-visible {
  outline: 2px solid #E5C188;
  outline-offset: 1px;
}

/* ======================================================================
   SPECIAL SECTION OVERRIDES & PRINT
   ====================================================================== */
.privacy-policy, .gdpr, .cookie-policy, .terms {
  background: #F6F8FB;
  border-radius: 18px;
  padding: 40px 18px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px rgba(37,36,70,0.09);
  color: #19191c;
}
.privacy-policy h1, .gdpr h1, .cookie-policy h1, .terms h1 {
  color: #252446;
  font-size: 1.68rem;
  margin-bottom: 12px;
}
.privacy-policy h2, .gdpr h2, .cookie-policy h2, .terms h2 {
  color: #181818;
  font-size: 1.19rem;
  margin-top: 20px;
  margin-bottom: 8px;
}
@media print {
  header, footer, .cookie-banner {
    display: none !important;
  }
  .section, .container {
    box-shadow: none !important;
    background: #fff !important;
  }
}
