/* ================================================== */
/*                CSS RESET & BASELINE                */
/* ================================================== */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #171b20;
  color: #ecedf1;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1 0 auto;
}
img,svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #D8B208;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
ul,ol {
  list-style: none;
  padding-left: 0;
}

/* ================================================ */
/*         FONT IMPORT & TYPOGRAPHY SCALE           */
/* ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(31,49,65, 0.15);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #D8B208;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
}
p,li,blockquote {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #e3e4e8;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #23272f;
  background: #f2f2f2;
  padding: 20px 32px;
  border-left: 5px solid #1F3141;
  border-radius: 0 8px 8px 0;
  margin: 0 0 10px 0;
}
.author {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  color: #222;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: #D8B208;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section, section { padding: 32px 8px; }
}

/* ================================================== */
/*                  FLEX LAYOUT BASICS                */
/* ================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  background: transparent;
}

/* ================== SPACING/HELPER LAYOUTS ================== */
.card-container,
.card-grid,
.team-list,
.feature-grid,
.course-grid,
.resources-list,
.tip-cards,
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.card,
.event-card,
.faq-item,
.testimonial-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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fafafa;
  box-shadow: 0 2px 12px rgba(31,49,65,0.08);
  border-radius: 10px;
  padding: 20px 28px;
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 540px;
  border: 1.5px solid #C4C7CE;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================ HEADER & NAVIGATION ================ */
header {
  width: 100%;
  background: #171b20;
  border-bottom: 2px solid #232c38;
  box-shadow: 0 2px 8px rgba(13, 14, 18, 0.08);
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}
.logo img {
  max-height: 48px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #e3e4e8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D8B208;
}
.main-nav a::after {
  display: block;
  content: '';
  width: 0;
  height: 3px;
  background: #D8B208;
  border-radius: 2px;
  margin-top: 2px;
  transition: width 0.2s;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}
.cta-header {
  margin-left: 16px;
}
.logo-footer img {
  max-height: 40px;
}

/* ===================== CTA BUTTON STYLE =====================*/
.cta, .cta-header {
  background: #D8B208;
  color: #1F3141;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 32px;
  box-shadow: 0 2px 18px rgba(216,178,8,0.12), 0 1px 2px rgba(0,0,0,0.09);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.11s;
  display: inline-block;
}
.cta:hover, .cta:focus, .cta-header:hover, .cta-header:focus {
  background: #fffcd6;
  color: #1F3141;
  box-shadow: 0 6px 24px rgba(216,178,8,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* ===================== HERO SECTION ===================== */
.hero {
  background: linear-gradient(102deg, #212B36 60%, #1F3141 100%);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  padding-top: 54px;
  padding-bottom: 54px;
}
.hero .content-wrapper {
  max-width: 700px;
  align-items: flex-start;
  gap: 18px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* ===================== FEATURES SECTION ===================== */
.features, .feature-benefits {
  background: #181e23;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(31,49,65,0.06);
}
.features h2, .feature-benefits h2 {
  margin-bottom: 16px;
}
.feature-grid, .feature-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  justify-content: flex-start;
}
.feature-grid li, .feature-benefits li {
  background: #20262C;
  border-radius: 10px;
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 1.5px 7px rgba(30,44,56,0.07);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.feature-grid img, .feature-benefits img {
  height: 38px;
  margin-bottom: 10px;
  filter: grayscale(0.3) brightness(0.9);
}
.feature-grid h3 {
  margin-bottom: 6px;
  color: #D8B208;
}
.feature-grid p {
  color: #ecedf1;
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials, .about-testimonials {
  background: #f2f2f2;
  border-radius: 18px;
}
.testimonials h2, .about-testimonials h2 {
  color: #1F3141;
  margin-bottom: 24px;
}
.testimonial-card {
  border-left: 6px solid #D8B208;
  background: #fff;
  box-shadow: 0 1px 8px rgba(31,49,65,0.11);
  padding: 22px 34px;
  margin-bottom: 24px;
  border-radius: 0 10px 10px 0;
  gap: 14px;
  max-width: 560px;
  color: #171b20;
}
.testimonial-card blockquote {
  padding: 0;
  border: none;
  background: none;
  color: #23272f;
  font-size: 1.13rem;
}
.testimonial-card .author {
  color: #1F3141;
  font-size: 1rem;
  font-weight: 600;
}

/* ===================== COURSE & EVENT CARDS ===================== */
.course-list, .events-list {
  background: #181e23;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(31,49,65,0.07);
}
.course-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.course-grid li, .team-list > div, .event-card {
  flex: 1 1 280px;
  min-width: 220px;
  background: #22282e;
  border: 1px solid #232c38;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(31,49,65,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.event-card h3 {
  color: #D8B208;
}

/* ============ FAQ, ACCORDION, & MISC FLEX BLOCKS ============= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #232829;
  color: #e4e5e8;
  border-radius: 8px;
  padding: 20px 22px;
  border-left: 5px solid #D8B208;
  min-width: 210px;
}
.faq-item h3 {
  color: #D8B208;
  cursor: pointer;
  margin-bottom: 10px;
}

/* ================== HIGHLIGHTS & BADGES ================== */
.highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 8px;
}
.highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #212B36;
  color: #e3e4e8;
  border-radius: 8px;
  padding: 16px 18px;
  flex: 1 1 260px;
  min-width: 180px;
}
.highlights img {
  width: 32px;
  height: 32px;
}
.filter {
  background: #222B34;
  border-radius: 14px;
  color: #D8B208;
  display: inline-block;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 2px 14px;
  margin-left: 6px;
  margin-bottom: 3px;
}

/* =================== RESOURCES & TIPS =================== */
.resources-list, .tip-cards, .statistics {
  gap: 18px;
  margin-bottom: 14px;
}
.resources-list li,.tip-cards li, .statistics li {
  background: #232c38;
  color: #fffcd6;
  border-left: 5px solid #D8B208;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1rem;
  margin-bottom: 0;
}
.resources-list a {
  color: #D8B208;
  font-weight: 600;
  text-decoration: underline;
}

/* ================== POLICY SECTION ================== */
.policy-section {
  background: #1F3141;
  color: #fffcd6;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(31,49,65,0.12);
}
.policy-section h1, .policy-section h2 {
  color: #D8B208;
}
.policy-section ul > li {
  list-style: disc inside;
  margin-bottom: 4px;
}
.policy-section a {
  color: #fffcd6;
  text-decoration: underline;
  font-weight: 500;
}

/* =================== FOOTER =================== */
footer {
  background: #181e23;
  border-top: 2px solid #232c38;
  margin-top: 42px;
  padding: 36px 0 24px 0;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin: 9px 0 7px 0;
}
.footer-nav a {
  color: #D8B208;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.footer-nav a:hover {
  text-decoration: underline;
  color: #fffcd6;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #b0b3b9;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 18px;
  width: auto;
  margin-right: 3px;
  filter: grayscale(0.7) contrast(0.9);
}
footer small {
  color: #b0b3b9;
  font-size: 0.93rem;
  margin-top: 10px;
}

/* =================== MOBILE MENU =================== */
.mobile-menu-toggle {
  display: none;
  background: #1F3141;
  color: #D8B208;
  border: none;
  font-size: 2rem;
  padding: 7px 16px;
  border-radius: 5px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 202;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.mobile-menu-toggle:active {
  background: #D8B208;
  color: #1F3141;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #181e23;
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  z-index: 250;
  transition: transform 0.34s cubic-bezier(.48,1.3,.52,0.9);
  box-shadow: -4px 0 24px rgba(31,49,65,0.12);
  padding: 44px 18px 18px 32px;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(-100vw);
  left: 0;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fffcd6;
  border: none;
  font-size: 2.2rem;
  margin-bottom: 14px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #D8B208;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fffcd6;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 4px;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D8B208;
  background: #1F3141;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-header {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* =================== RESPONSIVENESS =================== */
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .feature-benefits ul, .course-grid, .highlights ul, .team-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid li, .feature-benefits li, .course-grid li, .team-list > div {
    max-width: 99vw;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 4px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-grid,
  .team-list,
  .course-grid,
  .card-container,
  .content-grid,
  .resources-list,
  .tip-cards,
  .highlights ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* ========== VALUE & BENEFIT LISTS ============= */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}
.values-list li {
  background: #232c38;
  color: #D8B208;
  font-weight: 500;
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 0 0;
}
.benefits-list li {
  background: #20262c;
  border-radius: 10px;
  color: #D8B208;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.benefits-list img {
  height: 22px;
  width: 22px;
}

/* ========== MAP SNIPPET ============== */
.map-snippet {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.map-snippet img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(31,49,65,0.07);
}

/* ========== MODAL OVERLAY (FOR COOKIES) =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #212B36;
  color: #fffcd6;
  border-top: 3px solid #D8B208;
  padding: 22px 18px 18px 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 28px rgba(31,49,65,0.18);
  gap: 14px;
  font-size: 1.05rem;
  animation: cookieBannerIn 0.7s cubic-bezier(.25,1.6,.67,0.7);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  background: #D8B208;
  color: #171b20;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  font-size: 1rem;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.16s, color 0.18s, box-shadow 0.13s;
  box-shadow: 0 1px 6px rgba(216,178,8,0.13);
}
.cookie-btn.settings {
  background: none;
  border: 1.5px solid #D8B208;
  color: #D8B208;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #fffcd6;
  color: #23272f;
  box-shadow: 0 2px 10px rgba(216,178,8,0.15);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #D8B208;
  color: #1F3141;
}

/* =========== COOKIE MODAL ============= */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,21,26,0.83);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 32px 8px;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookieModalIn 0.5s cubic-bezier(0.19,1,0.22,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal {
  background: #f9f9fa;
  color: #20262c;
  border-radius: 14px;
  max-width: 380px;
  width: 100%;
  padding: 30px 24px 22px 24px;
  box-shadow: 0 6px 52px rgba(31,49,65,0.21);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h3 {
  color: #1F3141;
  font-size: 1.18rem;
  font-family: 'Montserrat';
  margin-bottom: 5px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: #1F3141;
  font-family: 'Montserrat';
  margin-right: 12px;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #D8B208;
  border-radius: 24px;
  transition: background .2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #1F3141;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 2px 6px rgba(31,49,65,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* =========== ACCENT CLASSES ============= */
.accent {
  color: #D8B208;
}

/* =============== CARD DESIGN ================ */
.card {
  background: #181e23;
  color: #fff;
  border-radius: 12px;
  padding: 32px 26px;
  box-shadow: 0 2px 18px rgba(31,49,65,0.12);
  border: 1.5px solid #232c38;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
}
.card h3, .card h4, .card h5 {
  color: #D8B208;
  margin-bottom: 10px;
}

/* ========== INTERACTIVE EFFECTS & STATES ========== */
.event-card, .card, .feature-grid li, .course-grid li, .testimonial-card, .faq-item {
  transition: box-shadow 0.19s, transform 0.12s;
}
.event-card:hover, .card:hover, .feature-grid li:hover, .course-grid li:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 6px 32px rgba(216,178,8,0.12), 0 2px 18px rgba(31,49,65,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* ============== SECTION & CTA SPACING ============= */
.cta-section, .cta {
  background: linear-gradient(99deg, #1F3141 80%, #232c38 100%);
  color: #fffcd6;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(31,49,65,0.13);
  text-align: center;
  padding: 44px 18px;
  margin-bottom: 40px;
}

/* ============ THANK YOU SECTION ============= */
.thank-you-section {
  background: #eaeff3;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(31,49,65,0.09);
  text-align: center;
}
.thank-you-section h1 {
  color: #1F3141;
}
.thank-you-section .cta {
  margin-top: 24px;
}

/* ================ UTILITIES ================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #e3e4e8;
}
.contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.contact-info img {
  width: 20px;
  margin-right: 6px;
  filter: grayscale(1) contrast(0.9);
}

@media (max-width: 600px) {
  .content-wrapper {
    gap: 8px;
  }
  h1, .hero h1 { font-size: 1.4rem; }
  h2 { font-size: 1.18rem; }
  .card, .event-card, .testimonial-card, .faq-item {
    padding: 16px 8px;
  }
  .faq-accordion { gap: 8px; }
  .resources-list li, .tip-cards li, .statistics li {
    font-size: 0.97rem;
    padding: 8px 8px;
  }
  .cookie-modal { padding: 16px 8px; }
}

/* ============== ACCESSIBILITY FOCUS ============= */
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #D8B208;
  outline-offset: 2px;
  z-index: 99999;
}

/* =============== PRINT STYLES ============== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
