/* CSS RESET & NORMALIZE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-size: 16px;
  background: #F8FAFC;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --primary: #1D3557;
  --secondary: #F1FAEE;
  --accent: #E63946;
  --pastel-blue: #BFD7ED;
  --pastel-pink: #F9CADA;
  --pastel-mint: #D6F6DD;
  --pastel-yellow: #FFEECF;
  --pastel-lavender: #E5C7F1;
  --pastel-grey: #EAEBEF;
  --white: #FFFFFF;
  --black: #22223B;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  background: var(--pastel-grey);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.3rem; line-height: 1.3; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

p, ul, ol {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 16px 0 rgba(180, 200, 238, 0.14);
}
@media (max-width: 768px) {
  .section, main section {
    padding: 28px 6vw;
    margin-bottom: 38px;
    border-radius: 20px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

main {
  flex: 1 1 auto;
  width: 100%;
  margin-top: 0;
}

/* FLEX LAYOUTS & MANDATORY CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-mint);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(220, 227, 248, 0.13), 0 1.5px 2px rgba(57, 82, 117, 0.03);
  margin-bottom: 20px;
  color: var(--black);
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MAIN NAVIGATION */
header {
  background: linear-gradient(90deg, var(--pastel-blue), var(--pastel-pink), var(--secondary));
  box-shadow: 0 2px 20px 0 rgba(146, 168, 209, 0.09);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0 18px 0;
  font-size: 1.08rem;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
}
.main-nav a {
  color: var(--primary);
  padding: 9px 13px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.main-nav a:hover:not(.cta-primary) {
  background: var(--pastel-blue);
  color: var(--black);
}
.cta-primary {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 3px 8px 0 rgba(238, 90, 123, 0.11);
  letter-spacing: 0.04em;
  transition: background 0.18s, box-shadow 0.18s;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #d74254;
  box-shadow: 0 6px 16px 0 rgba(239, 90, 123, 0.21);
  color: #fff;
}
.cta-secondary {
  background: var(--pastel-blue);
  color: var(--primary) !important;
  padding: 9px 22px !important;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  border: none;
  box-shadow: 0 3px 8px 0 rgba(189, 215, 237, 0.13);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--pastel-mint);
  color: var(--primary);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    font-size: 0.98rem;
    gap: 5px;
  }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 17px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  z-index: 201;
  border: none;
  box-shadow: 0 3px 10px 0 rgba(230, 57, 70, 0.07);
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #d74254;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 247, 255, 0.98);
  z-index: 203;
  transition: transform 0.36s cubic-bezier(.38,1,.65,1.1);
  transform: translateX(100vw);
  flex-direction: column;
  padding-top: 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 27px;
  background: var(--accent);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  z-index: 206;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #d74254;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 22px 22px 22px;
  gap: 22px;
}
.mobile-nav a {
  padding: 13px 22px;
  margin: 4px 0;
  font-size: 1.18rem;
  border-radius: 8px;
  color: var(--primary);
  background: var(--pastel-grey);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.18s;
  width: 100%;
}
.mobile-nav a:hover {
  background: var(--pastel-blue);
}
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 55%, var(--pastel-pink) 100%);
  box-shadow: 0 3px 28px 0 rgba(180, 200, 238, 0.13);
  margin-bottom: 60px;
  border-radius: 0 0 42px 42px;
}
.hero .container {
  padding-top: 28px;
  padding-bottom: 28px;
}
.hero h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.15rem;
  color: #384973;
  margin-bottom: 25px;
}

/* FEATURES SECTION */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--pastel-mint);
  border-radius: 16px;
  padding: 28px 18px 18px 18px;
  box-shadow: 0 2.5px 13px 0 rgba(181, 214, 208, 0.09);
  width: 250px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: 0 5px 24px 0 rgba(181, 214, 208, 0.22);
  transform: translateY(-5px) scale(1.01);
}
.features ul img {
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
}
.features ul h3 {
  font-size: 1.1rem;
  margin-bottom: 9px;
}

@media (max-width: 950px) {
  .features ul {
    flex-direction: column;
    gap: 18px;
  }
  .features ul li {
    width: 100%;
    min-width: 0;
  }
}

/* NEWS HIGHLIGHTS */
.news-highlights ul,
.events-preview ul {
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 14px;
}
.news-highlights ul li,
.events-preview ul li {
  margin-bottom: 12px;
  font-size: 1.07rem;
}
.news-highlights ul li a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.15s, text-decoration 0.18s;
  border-bottom: 1px solid transparent;
}
.news-highlights ul li a:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.quick-links a {
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: 10px;
  padding: 9px 15px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.15s, box-shadow 0.14s;
  box-shadow: 0 2px 7px 0 rgba(189, 215, 237, 0.09);
}
.quick-links a:hover {
  background: var(--pastel-lavender);
}

/* EVENTS PREVIEW */
.events-preview .cta-secondary {
  margin-top: 18px;
}

/* NEWSLETTER */
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.newsletter-signup input[type="email"] {
  border-radius: 12px;
  border: 1.5px solid #d7e9fc;
  padding: 10px 17px;
  font-size: 1rem;
  min-width: 230px;
  background: var(--pastel-grey);
  transition: border 0.17s, box-shadow 0.15s;
}
.newsletter-signup input[type="email"]:focus {
  outline: none;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 5px 20px 0 rgba(181, 57, 70, 0.10);
}
.newsletter-signup button {
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.18s;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(230, 57, 70, 0.10);
  cursor: pointer;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: #d74254;
}

.social-media-links {
  display: flex;
  gap: 18px;
  margin-top: 13px;
}
.social-media-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--pastel-blue);
  border-radius: 50%;
  transition: background 0.16s;
}
.social-media-links a:hover {
  background: var(--pastel-lavender);
}

/* LISTS AND CARDS ON OTHER PAGES */
.filter-options, .event-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
.filter-options button, .event-categories button {
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 8px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.16s, color 0.15s;
}
.filter-options button:hover, .event-categories button:hover, .filter-options button.active, .event-categories button.active {
  background: var(--accent);
  color: #fff;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 16px;
}
.articles-list li {
  background: var(--pastel-yellow);
  padding: 20px 16px;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px 0 rgba(236, 203, 135, 0.08);
  transition: box-shadow 0.17s, transform 0.15s;
}
.articles-list li:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 5px 17px 0 rgba(236, 203, 135, 0.16);
}
.articles-list h3 {
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.articles-list p {
  font-size: 0.98rem;
  color: var(--primary);
}

.pagination {
  display: flex;
  gap: 8px;
  margin-top: 26px;
  align-items: center;
}
.pagination button {
  border-radius: 8px;
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  padding: 6px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.16s, color 0.15s;
}
.pagination button.active, .pagination button:hover, .pagination button:focus {
  background: var(--accent);
  color: #fff;
}

/* SERVICES/OFFER */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.service-card {
  background: var(--pastel-lavender);
  border-radius: 16px;
  box-shadow: 0 2.5px 13px 0 rgba(206, 172, 241, 0.09);
  padding: 26px 18px 24px 18px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.17s;
  margin-bottom: 20px;
  position: relative;
}
.service-card img {
  width: 34px;
  margin-bottom: 13px;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.service-card p {
  font-size: 0.99rem;
  margin-bottom: 18px;
}
.service-card .price {
  color: var(--accent);
  background: var(--pastel-pink);
  border-radius: 9px;
  font-weight: 700;
  padding: 6px 13px;
  font-size: 0.97rem;
  position: absolute;
  bottom: 19px; right: 19px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(206, 172, 241, 0.21);
  transform: translateY(-6px) scale(1.012);
}
@media (max-width: 950px) {
  .services-list {
    flex-direction: column;
    gap: 14px;
  }
  .service-card {
    width: 100%;
    min-width: 0;
  }
}

.info-box {
  background: var(--pastel-blue);
  padding: 17px 18px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 7px;
  margin-bottom: 12px;
  color: var(--primary);
}

.editorial-team ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.quality-guarantee {
  background: var(--pastel-mint);
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 0.98rem;
  margin-top: 9px;
  color: var(--primary);
}

/* CALENDAR ON EVENTS PAGE */
.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 17px;
}
.calendar-list li {
  background: var(--pastel-yellow);
  border-radius: 10px;
  padding: 15px 18px;
  font-size: 1.04rem;
  box-shadow: 0 2px 8px 0 rgba(236, 203, 135, 0.08);
  margin-bottom: 0;
}
.event-search-bar {
  margin-top: 6px;
  margin-bottom: 10px;
  width: 100%;
}
.event-search-bar input {
  padding: 12px 16px;
  font-size: 1.02rem;
  border: 1.5px solid #d7e9fc;
  border-radius: 10px;
  width: 100%;
  background: var(--pastel-grey);
  transition: border 0.17s, box-shadow 0.15s;
}
.event-search-bar input:focus {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 5px 20px 0 rgba(181, 57, 70, 0.08);
  outline: none;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, var(--pastel-pink), var(--white));
  margin-top: 32px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 22px 0 rgba(196, 184, 225, 0.10);
  padding: 26px 0 10px 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--primary);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-nav a:hover {
  background: var(--pastel-blue);
}
.footer-info {
  text-align: center;
  color: var(--primary);
  font-size: 0.93rem;
  margin-top: 7px;
}
@media (max-width: 768px) {
  footer {
    padding: 19px 0 8px 0;
    border-radius: 22px 22px 0 0;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }
}

/* SECTION TYPOGRAPHY & SPACING */
.text-section {
  gap: 10px;
}
.text-section h1, .text-section h2 {
  margin-bottom: 10px;
}
.text-section p {
  margin-bottom: 4px;
}

/* GLOBAL RESPONSIVE BREAKPOINTS */
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.08rem; }
  body, p, ul, ol, .footer-info, .footer-nav a { font-size: 0.97rem; }
  .container { padding: 0 7vw; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
a, button, .card, .service-card, .testimonial-card, .cta-primary, .cta-secondary {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--pastel-blue);
  color: var(--primary);
  box-shadow: 0 -2px 22px 0 rgba(48, 73, 117, 0.13);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 32px 18px 22px;
  font-size: 1rem;
  border-radius: 16px 16px 0 0;
  opacity: 1;
  pointer-events: auto;
  animation: cookieFadeIn 0.7s cubic-bezier(.53, 1.65, .48, 1.12);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 10px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
}
.cookie-banner .accept {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #b2182b;
}
.cookie-banner .reject {
  background: var(--pastel-grey);
  color: var(--primary);
}
.cookie-banner .reject:hover {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--pastel-yellow);
  color: var(--primary);
}
.cookie-banner .settings:hover {
  background: var(--pastel-pink);
}
@media (max-width:600px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 9vw 13px 6vw;
    border-radius: 10px 10px 0 0;
  }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,38,55, 0.36);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: cookiemodalpop .3s cubic-bezier(.38,1,.65,1.1);
}
@keyframes cookiemodalpop {
  0% { opacity: 0; transform: scale(0.91); } 
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal {
  background: var(--pastel-pink);
  border-radius: 18px;
  padding: 32px 32px 22px 32px;
  max-width: 400px;
  min-width: 0;
  width: 92vw;
  color: var(--primary);
  font-size: 1.05rem;
  box-shadow: 0 5px 36px 0 rgba(230,57,70,0.20);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 4100;
}
.cookie-modal h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.18rem; }
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0 16px 0;
}
.cookie-modal .category-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
  padding: 3px 0;
}
.cookie-modal .category-item input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--accent);
  border-radius: 5px;
  margin-right: 5px;
}
.cookie-modal .fixed {
  opacity: 0.70;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 13px;
}
.cookie-modal .modal-actions button {
  border-radius: 10px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
}
.cookie-modal .save {
  background: var(--accent);
  color: #fff;
}
.cookie-modal .close {
  background: var(--pastel-grey);
  color: var(--primary);
}
.cookie-modal .save:hover {
  background: #b2182b;
}
.cookie-modal .close:hover {
  background: var(--accent);
  color: #fff;
}
.cookie-modal .modal-close-x {
  position: absolute;
  top: 15px;
  right: 19px;
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .modal-close-x:hover {
  background: #b2182b;
}

/* ACCESSIBLE FOCUS STATES */
a:focus, button:focus, input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent), 0 1.5px 10px var(--pastel-blue);
  border-color: var(--accent);
}

/* OVERRIDE DEFAULT LISTS ON POLICY PAGES */
.text-section ul, .text-section ol {
  padding-left: 24px;
  margin: 8px 0 15px 0;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 7px;
  position: relative;
  color: var(--primary);
  font-size: 1rem;
}
.text-section ul li::before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}

/* MISC UTILITY CLASSES FOR SPACING */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-2 { margin-top: 8px!important; }
.mb-2 { margin-bottom: 8px!important; }
.mt-3 { margin-top: 16px!important; }
.mb-3 { margin-bottom: 16px!important; }

/* Hide unwanted scrollbars when mobile menu open (optional enhancement) */
body.menu-open {
  overflow: hidden;
}

/* Z-INDEX FOR IMPORTANT LAYERS */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 200; }

/* END */
