/* ========= CSS RESET & BASE STYLES ========== */
/* RESET & 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, main, 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 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #203146;
  background: #F6F7F9;
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, select {
  font-family: inherit;
  font-size: inherit;
}


/* ========= TYPOGRAPHY ========== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #203146;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.22;
  margin-bottom: 20px;
  color: #203146;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 14px;
  color: #203146;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
p, li, .body-copy {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #203146;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.125rem;
  color: #586785;
  margin-bottom: 24px;
}

/* Font sizes for responsive heading */
@media (min-width: 600px) {
  h1, .h1 { font-size: 2.75rem; }
}
@media (min-width: 900px) {
  h1, .h1 { font-size: 3rem; }
  h2, .h2 { font-size: 2rem; }
}

strong {
  font-weight: 700;
}

/* ========= CONTAINER ========== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ========= SECTIONS & SPACING ========== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(32,49,70,0.04);
}

@media (max-width: 768px) {
  .section, section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}

/* ========== FLEXBOX PATTERNS ========== */
.card-container,
.feature-grid,
.team-list,
.values-list,
.curated-topics-list,
.curated-articles-list,
.category-list,
.news-highlight-list,
.news-list,
.review-list,
.festival-list,
.awards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.card, .highlight-card, .feature-card, .profile-summary {
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(32,49,70,.06);
  padding: 24px 20px;
  box-sizing: border-box;
  transition: box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .highlight-card:hover, .feature-card:hover, .profile-summary:hover {
  box-shadow: 0 6px 24px 0 rgba(32,49,70,0.12);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F7F9;
  border-radius: 12px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 1.5px 6px rgba(32,49,70,0.07);
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.23s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 3px 18px rgba(32,49,70,0.17);
  transform: translateY(-4px) scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****** Slider & Responsive for Testimonials ******/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/***** Lists responsive behaviour *****/
.team-list, .values-list, .feature-grid, .curated-topics-list, 
.curated-articles-list, .category-list, .news-list,
.festival-list, .awards-list {
  flex-direction: column;
}
@media (min-width: 600px) {
  .team-list, .values-list, .feature-grid, .curated-topics-list, 
  .curated-articles-list, .category-list, .news-list,
  .festival-list, .awards-list {
    flex-direction: row;
  }
}

/***** Margin between flex items *****/
.team-list > li, .values-list > li, .feature-grid > li, .curated-topics-list > li,
.curated-articles-list > li, .category-list > li, .news-list > li,
.festival-list > li, .awards-list > li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(32,49,70,0.04);
  padding: 20px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s;
}
.team-list > li:hover, .values-list > li:hover, .feature-grid > li:hover,
.curated-topics-list > li:hover, .curated-articles-list > li:hover, .category-list > li:hover {
  box-shadow: 0 4px 16px 0 rgba(32,49,70,0.10);
}

/***** Responsive Section Padding *****/
@media (max-width: 600px) {
  .card, .highlight-card, .feature-card, .profile-summary,
  .team-list > li, .values-list > li, .feature-grid > li,
  .curated-topics-list > li, .curated-articles-list > li,
  .category-list > li, .news-list > li, .festival-list > li,
  .awards-list > li {
    padding: 14px 8px;
    min-width: 0;
  }
}

/***** Topic and location tags *****/
.topic-tag, .location-tag {
  background: #E0425A;
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  padding: 2px 10px;
  margin-right: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}
.location-tag {
  background: #203146;
}

/***** News Dates, Event Dates & Subtle info *****/
.news-date, .event-date {
  display: inline-block;
  color: #687A99;
  font-size: 0.9em;
  margin-left: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}

/***** Special rating (stars) *****/
.stars {
  color: #E0425A;
  font-size: 1.15em;
  margin-right: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2.5px;
}

/***** More link *****/
.more-link {
  display: inline-block;
  color: #E0425A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  margin-top: 10px;
  border-bottom: 1.5px solid #E0425A;
  transition: color 0.2s, border 0.2s;
}
.more-link:hover {
  color: #203146;
  border-bottom: 1.5px solid #203146;
}

/* ========= NAVIGATION BAR & BURGER MENU ========== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(32,49,70,0.08);
  position: sticky;
  top: 0;
  z-index: 1002;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #203146;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F7F9;
  color: #E0425A;
}
.nav-cta {
  background: #E0425A;
  color: #fff;
  font-weight: 600;
  border-radius: 22px;
  padding: 9px 22px;
  box-shadow: 0 2px 8px rgba(224,66,90,0.07);
  margin-left: 12px;
  transition: background 0.2s, box-shadow 0.20s;
}
.nav-cta:hover, .nav-cta:focus {
  background: #ce2541;
  color: #fff;
  box-shadow: 0 4px 16px rgba(224,66,90,0.13);
}

/* Burger toggle btn */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #203146;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50%;
  transition: background 0.22s;
  z-index: 1051;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6F7F9;
}

/* Mobile navigation overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 22px rgba(32,49,70,.19);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  display: flex;
  flex-direction: column;
  padding: 32px 26px 18px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #203146;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.16s, background 0.15s;
  border-radius: 50%;
  padding: 6px 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E0425A;
  background: #F6F7F9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #203146;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  padding: 9px 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F7F9;
  color: #E0425A;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay background when mobile menu open */
body.mobile-menu-active::before {
  content: '';
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(32,49,70,0.23);
  z-index: 1900;
  animation: fadein-bg 0.24s;
}
@keyframes fadein-bg {
  from { opacity: 0; } to { opacity: 1; }
}


/* ========= HERO SECTIONS ========= */
.hero-section, .news-hero-section, .reviews-hero-section, .festival-hero-section, .awards-hero-section, .thank-you-section, .about-section, .contact-section, .legal-section {
  background: #fff;
  box-shadow: 0 1px 10px rgba(32,49,70,0.04);
  margin-bottom: 60px;
  padding: 48px 20px 40px 20px;
  border-radius: 0 0 28px 28px;
}
@media (max-width:768px) {
  .hero-section, .news-hero-section, .reviews-hero-section, .festival-hero-section, .awards-hero-section, .thank-you-section, .about-section, .contact-section, .legal-section {
    padding: 28px 8px 22px 8px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 32px;
  }
}

/***** CTA BUTTONS *****/
.cta-btn {
  display: inline-block;
  background: #E0425A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 38px;
  letter-spacing: 0.02em;
  box-shadow: 0 2.5px 12px rgba(224,66,90,0.07);
  margin-top: 8px;
  transition: background 0.22s, color 0.16s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #203146;
  color: #fff;
  box-shadow: 0 6px 24px rgba(32,49,70,0.13);
}

/* FILTER BUTTONS & SELECTS */
.news-filters, .filter-options {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.news-filters button, .filter-options button, .filter-options select {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid #CED6E1;
  background: #F6F7F9;
  color: #203146;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.2s, border 0.17s;
}
.news-filters button:hover, .filter-options button:hover, .filter-options select:focus {
  background: #E0425A;
  color: #fff;
  border-color: #E0425A;
}
.filter-options label {
  font-size: 1rem;
  color: #687A99;
  margin-right: 5px;
}
.filter-options select {
  appearance: none;
  outline: none;
}

/* ========= FOOTER ========== */
footer {
  width: 100%;
  background: #fff;
  box-shadow: 0 -1.5px 9px 0 rgba(32,49,70,0.09);
  padding: 36px 0 20px 0;
}
.footer-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #203146;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  padding: 5px 0;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus { color: #E0425A; }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  font-size: 0.98em;
  color: #687A99;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a {
  color: #203146;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover { color: #E0425A; }
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #687A99;
  font-size: 0.93em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 6px;
}
.footer-brand img {
  width: 29px;
  height: 29px;
}
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column; gap: 16px;
  }
  .footer-menu, .footer-contact { flex-direction: column; gap: 8px; }
}

/* ========= COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -2.5px 20px 0 rgba(32,49,70,0.18);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 28px;
  width: 100%;
  flex-wrap: wrap;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1), opacity 0.25s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  font-size: 1em;
  color: #203146;
  margin-bottom: 0;
  max-width: 440px;
}
.cookie-banner .cookie-btn-group {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97em;
  padding: 8px 22px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .18s;
  font-weight: 600;
  margin-bottom: 0px;
}
.cookie-banner .cookie-accept {
  background: #E0425A;
  color: #fff;
  border: none;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus { background: #203146; }

.cookie-banner .cookie-reject {
  background: #F6F7F9;
  color: #203146;
  border: 1.5px solid #CED6E1;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus { background: #ECECEC; }
.cookie-banner .cookie-settings {
  background: #fff;
  color: #E0425A;
  border: 1.5px solid #E0425A;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #E0425A;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; gap: 18px; align-items: flex-start; padding: 15px 9px 13px 12px; }
  .cookie-banner .cookie-btn-group { width: 100%; padding-bottom: 2px; }
}

/****** COOKIE PREFERENCES MODAL ******/
.cookie-modal {
  position: fixed;
  z-index: 4100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,49,70,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 36px rgba(32,49,70,0.23);
  padding: 44px 38px 28px 36px;
  min-width: 300px;
  max-width: 98vw;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideDownModal .33s cubic-bezier(0.7,0,0.3,1);
  position: relative;
}
@keyframes slideDownModal {
  from { opacity: 0; transform: translateY(-35px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal-content h2 { font-size: 1.28rem; font-family: 'Montserrat', Arial, sans-serif; margin-bottom: 7px; }
.cookie-modal-content label {
  display: flex; align-items: center; gap: 8px;
  font-size:1rem; color: #203146;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-switch {
  position: relative;
  width: 38px;
  height: 20px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute; cursor:pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #F6F7F9;
  border-radius: 20px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #E0425A;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 16px; width: 16px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 9px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute; right: 19px; top: 19px;
  background: none;
  border: none;
  font-size: 1.48rem;
  color: #203146;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F6F7F9;
  color: #E0425A;
}
.cookie-modal-content .cookie-category-desc {
  font-size: 0.96em;
  color: #687A99;
  margin-bottom: 12px;
}
.cookie-category-essential {
  color: #687A99;
  font-size: 0.97em;
  margin-bottom: 7px;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    width: 97vw; padding: 22px 7vw 18px 7vw;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 60px;
}
.testimonial-author {
  margin-top: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98em;
  color: #203146;
  letter-spacing: 0.03em;
}

/* ========== SPECIAL CLASSES & NARRATIVE CARDS ========== */
.highlighted-stories, .featured-festivals, .featured-awardees {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 650px) {
  .highlighted-stories, .featured-festivals, .featured-awardees {
    flex-direction: column; gap: 13px;
  }
}

/***** Text Section in Legal and About/Contact *****/
.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section h1, .legal-section h2, .legal-section h3,
.about-section h1, .about-section h2, .about-section h3,
.contact-section h1, .contact-section h2, .contact-section h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #203146;
}

/***** Thank you/confirmation section *****/
.thank-you-section .cta-btn {
  margin-top: 24px;
}

/* Contact details */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 19px;
}
.contact-details li {
  display: flex; align-items: center; gap: 9px;
  font-size: 1em; color: #203146;
}
.contact-details img { width: 20px; height: 20px; }
.contact-details a { color: #E0425A; transition: color 0.18s; }
.contact-details a:hover { color: #203146; }

/* ========= FORM STATES (generic, as no form in provided HTML) ========= */
input, textarea, select {
  background: #F6F7F9;
  border: 1.5px solid #CED6E1;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #203146;
  margin-bottom: 18px;
  transition: border 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #E0425A;
  background: #fff;
}

/* ========== GENERAL INTERACTIONS ========== */
button, .cta-btn {
  transition: background 0.20s, color 0.19s, box-shadow 0.18s, transform 0.15s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}
a:focus {
  outline: 2.5px solid #E0425A;
  outline-offset: 2px;
}

/* ========== UTILITIES & ACCESSIBILITY ========== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========== SCROLLBAR STYLING ========= */
::-webkit-scrollbar { width: 8px; background: #F6F7F9; }
::-webkit-scrollbar-thumb { background: #CED6E1; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #E0425A; }

/* ========== MEDIA QUERIES FOR RESPONSIVENESS ========== */
@media (max-width: 1024px) {
  .navbar { flex-direction: row; padding: 10px 10px; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 800px) {
  .container { padding: 0 6px; }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.60rem; }
  h2, .h2 { font-size: 1.18rem; }
  h3, .h3 { font-size: 1em; }
  .cta-btn { font-size: 1rem; padding: 12px 20px; }
}
@media (max-width: 430px) {
  .navbar { padding: 7px 3px; }
  header { box-shadow: 0 1px 6px rgba(32,49,70,0.04); }
  .logo img { height: 30px; }
}

/* ========== Z-INDEX ========= */
header      { z-index: 1002; }
.main-nav   { z-index: 1100; }
.mobile-menu { z-index: 2000; }
.cookie-banner, .cookie-modal { z-index: 4000; }

/****** END *******/
