/* === CSS 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,
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F2F4F7;
  color: #184B77;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* === BRAND FONTS & BASE TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
  color: #184B77;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
h4, h5, h6 { font-size: 1.125rem; font-weight: 700; }

.subheadline { font-size: 1.125rem; color: #53B7A9; margin-bottom: 18px; font-family: 'Montserrat', 'Roboto', Arial, sans-serif; font-weight: 500; }
p, li, blockquote { font-size: 1rem; margin-bottom: 14px; }
strong { font-weight: 700; }
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  color: #184B77;
  background: #FFF;
  border-left: 6px solid #53B7A9;
  padding: 20px 24px;
  margin-bottom: 10px;
  border-radius: 16px;
}

/* === COLORS & ACCENTS === */
:root {
  --primary: #184B77;
  --secondary: #53B7A9;
  --accent: #F2F4F7;
  --fun-pink: #FFB7E4;
  --fun-yellow: #FFE561;
  --fun-orange: #FF9B57;
  --fun-green: #7BEFA8;
  --text: #184B77;
  --background: #F2F4F7;
  --card-bg: #FFF;
  --shadow: 0 4px 18px rgba(24,75,119,0.07), 0 2px 6px rgba(24,75,119,0.04);
}

/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s cubic-bezier(.4,.1,.12,1), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 28px 0 rgba(83,183,169,0.20);
  z-index: 2;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(83,183,169,0.14);
  border: 2px solid #53B7A9;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(240,125,167,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(24,75,119,0.04);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
}
.main-nav > a {
  color: #184B77;
  font-weight: 600;
  margin-right: 6px;
  border-radius: 14px;
  padding: 7px 14px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
.main-nav > a:hover:not(.cta-btn), .main-nav > a:focus:not(.cta-btn) {
  background: var(--fun-yellow);
  color: #184B77;
  box-shadow: 0 2px 10px 0 rgba(255,179,228,0.09);
}
.main-nav img {
  height: 40px; width: auto; margin-right: 18px;
}
.cta-btn {
  background: linear-gradient(90deg, #53B7A9 20%, #FFB7E4 90%);
  color: #184B77;
  border-radius: 22px;
  padding: 10px 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-left: 14px;
  font-size: 1.13rem;
  box-shadow: 0 2px 8px 0 rgba(83,183,169,0.08);
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  outline: none;
  border: 2px solid transparent;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFB7E4 10%, #53B7A9 90%);
  color: #184B77;
  box-shadow: 0 4px 16px 0 rgba(255,179,228,0.14),0 2px 8px 0 rgba(83,183,169,0.10);
  border-color: #184B77;
  transform: scale(1.04) translateY(-2px);
}

/* === BURGER MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #53B7A9;
  color: #184B77;
  border-radius: 10px;
  font-size: 2.1rem;
  padding: 3px 14px 5px 14px;
  border: none;
  margin-left: auto;
  z-index: 52;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(24,75,119,0.09);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--fun-pink);
  color: #184B77;
}
/* Sliding menu style */
.mobile-menu {
  background: #FFF;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  z-index: 120;
  box-shadow: 2px 0 30px 0 rgba(24,75,119,.15);
  transform: translateX(-110%);
  transition: transform 0.34s cubic-bezier(.6,.1,.21,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 20px 20px 20px;
  gap: 20px;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.8rem;
  color: #184B77;
  background: #53B7A9;
  border-radius: 50%;
  padding: 3px 11px 5px 11px;
  border: none;
  position: absolute;
  right: 20px; top: 16px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--fun-pink);
  color: #184B77;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  color: #184B77;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 12px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFE561;
  color: #184B77;
}

/* === MAIN HERO & FUN DECOR === */
.hero {
  background: linear-gradient(80deg, #FFB7E4 3%, #53B7A9 92%);
  color: #184B77;
  padding: 54px 0 70px 0;
  border-radius: 0 0 64px 64px;
  display: flex;
  align-items: center;
  min-height: 340px;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
}
.hero h1,
.hero .subheadline {
  color: #184B77;
  text-shadow: 0 3px 28px #F2F4F7;
}
.hero .cta-btn {
  margin-top: 22px;
}

/* === FEATURES SECTION === */
.features, .feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 28px;
}
.feature-grid {
  flex-direction: row;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #FFF;
  box-shadow: 0 6px 28px rgba(83,183,169,0.08);
  border-radius: 22px;
  padding: 28px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 260px;
  min-width: 180px;
  min-height: 250px;
  transition: box-shadow 0.22s, transform .18s;
  margin-bottom: 16px;
  border-left: 6px solid var(--fun-yellow);
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 12px 33px 0 rgba(255,179,228,0.13);
  transform: translateY(-5px) scale(1.02);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 9px;
  filter: drop-shadow(0 2px 0 #FFE561);
  animation: floating 2.9s ease-in-out infinite alternate;
}
@keyframes floating {
  0% { transform: translateY(0px) rotate(-3deg); }
  100% { transform: translateY(-8px) rotate(8deg); }
}

/* === NEWS & GUIDES PREVIEW, LISTING === */
.news-preview, .guides-preview, .news-listing, .guides-listing, .rankings-listing, .services, .faqs, .about-section, .values, .partners, .contact-section, .newsletter, .newsletter-form, .thankyou, .testimonial, .legal {
  background: #FFF;
  border-radius: 32px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
  animation: fadeinup 0.9s cubic-bezier(.3,1.15,.45,1);
}
@keyframes fadeinup {
  0% { opacity: 0; transform: translateY(45px); }
  85% { opacity: 0.82; }
  100% { opacity: 1; transform: translateY(0); }
}

.news-preview ul, .guides-preview ul, .news-listing ul, .guides-listing ul, .rankings-listing ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.news-preview ul li a, .guides-preview ul li a,
.news-listing ul li h3 a, .guides-listing ul li h3 a,
.rankings-listing .ranking-grid h3 a {
  color: #184B77;
  text-decoration: underline;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.11rem;
  background: #FFF;
  padding: 3px 7px;
  border-radius: 9px;
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
}
.news-preview ul li a:hover,
.guides-preview ul li a:hover,
.news-listing ul li h3 a:hover,
.guides-listing ul li h3 a:hover,
.rankings-listing .ranking-grid h3 a:hover {
  background: var(--fun-pink);
  box-shadow: 0 2px 8px 0 rgba(255,179,228,0.13);
  color: #184B77;
}

/* NEWS/GUIDES LISTING FILTERS */
.news-filters, .guide-filters, .ranking-filters {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #184B77;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.07rem;
}
.news-filters a, .guide-filters a, .ranking-filters a {
  color: #184B77;
  padding: 5px 12px;
  border-radius: 11px;
  transition: background 0.11s, color 0.11s;
}
.news-filters a:hover, .guide-filters a:hover, .ranking-filters a:hover {
  background: #53B7A9;
  color: #FFF;
}

.pagination {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
}
.pagination a, .pagination span {
  padding: 6px 15px;
  border-radius: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #F2F4F7;
  color: #184B77;
  transition: background 0.15s, color 0.15s;
}
.pagination a:hover, .pagination a:focus {
  background: #FFE561;
  color: #184B77;
}
.pagination span { background: #53B7A9; color: #FFF; }

/* === NEWSLETTER PREVIEW === */
.newsletter, .newsletter-form {
  background: linear-gradient(85deg,#FFB7E4 4%, #FFE561 60%, #7BEFA8 100%);
  border-radius: 26px;
  box-shadow: 0 6px 18px 0 rgba(120,200,222,0.11);
  margin-bottom: 40px;
  color: #184B77;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.newsletter h2, .newsletter-form h2 {
  color: #184B77;
}
.newsletter .cta-btn, .newsletter-form .cta-btn {
  margin-top: 18px;
}
.privacy-note {
  font-size: 0.91rem;
  color: #184B77;
  margin-top: 10px;
}

/* === TESTIMONIALS / REVIEW === */
.testimonials {
  background: linear-gradient(90deg, #FFE561 5%, #7BEFA8 60%, #F2F4F7 100%);
  border-radius: 24px;
  padding: 40px 20px;
  margin-bottom: 45px;
}
.testimonials h2 {
  text-align: left;
  margin-bottom: 28px;
}
.testimonial-card blockquote {
  background: none;
  padding: 0;
  border: none;
  color: #184B77;
}
.testimonial-card span {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #184B77;
  margin-left: 16px;
  opacity: 0.8;
}

/* === FOOTER === */
footer {
  background: #184B77;
  color: #FFF;
  border-top-left-radius: 84px;
  border-top-right-radius: 84px;
  margin-top: 50px;
  padding: 40px 0 16px 0;
  position: relative;
  box-shadow: 0 -4px 28px rgba(24,75,119,0.08);
}
footer section {
  background: none;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
}
.footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-size: 1.12rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.footer-menu a {
  color: #FFE561;
  border-radius: 10px;
  padding: 6px 13px;
  transition: background 0.19s, color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #53B7A9;
  color: #FFF;
}
address {
  font-style: normal;
}
address ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 19px;
  align-items: flex-end;
}
address li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #FFF;
  gap: 10px;
}
address img { width: 22px; height: 22px; margin-right: 7px; filter: drop-shadow(0 2px 0 #FF9B57); }
address a { color: #FFE561; text-decoration: underline; }
.footer-social {
  display: flex;
  gap: 30px;
  margin-top: 13px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  transition: transform 0.14s;
}
.footer-social a:hover img { transform: scale(1.20) rotate(-12deg); }

/* === CTA-LINK === */
.cta-link {
  color: #FFF;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-top: 15px;
  padding: 7px 18px;
  background: #53B7A9;
  border-radius: 18px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 15px 0 rgba(83,183,169,0.09);
}
.cta-link:hover, .cta-link:focus {
  background: #184B77;
  color: #FFE561;
  box-shadow: 0 4px 22px 0 rgba(24,75,119,0.15);
}

/* === THANK YOU PANEL === */
.thankyou {
  background: linear-gradient(94deg, #7BEFA8 3%, #FFB7E4 97%);
  border-radius: 30px;
  animation: fadeinup 1.1s cubic-bezier(.18,1.2,.38,1.13);
  color: #184B77;
}
.confirmation-message {
  background: #FFE561;
  border-radius: 14px;
  padding: 16px 28px;
  font-size: 1.13rem;
  font-weight: 700;
  color: #184B77;
  margin-bottom: 18px;
}
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

/* === LEGAL/COOKIE POLICY === */
.legal {
  background: #FFF;
  border-radius: 30px;
  color: #184B77;
  margin-bottom: 56px;
  font-size: 1.05rem;
  box-shadow: var(--shadow);
  padding: 38px 16px;
}
.legal h1, .legal h2 { color: #184B77; }
.legal ul { margin: 13px 0 18px 22px; list-style: disc; }
.legal p, .legal ul li { margin-bottom: 12px; }

/* === INTERFACE MICRO-ANIMATIONS === */
a, button, .cta-btn, .cta-link, .footer-social a img, .card, .main-nav > a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF;
  color: #184B77;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  box-shadow: 0 -2px 28px 0 rgba(24,75,119,0.13);
  padding: 18px 8px 20px 8px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  font-size: 1.07rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  animation: up-fade-in 0.68s cubic-bezier(.3,1.15,.2,1);
}
@keyframes up-fade-in {
  0% {opacity:0; transform: translateY(90px);}
  85% {opacity:.95;}
  100% {opacity:1;transform: translateY(0);}
}
.cookie-banner p { margin-bottom: 0; }
.cookie-banner .cookie-btn {
  background: #53B7A9;
  color: #FFF;
  border-radius: 14px;
  padding: 8px 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(83,183,169,0.10);
}
.cookie-banner .cookie-btn.settings {
  background: #FFB7E4;
  color: #184B77;
  margin-right: 16px;
}
.cookie-banner .cookie-btn.reject {
  background: #FF9B57;
  color: #184B77;
  margin-left: 0;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #FFE561;
  color: #184B77;
  box-shadow: 0 3px 16px 0 rgba(255,229,97,0.11);
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,75,119,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: up-fade-in 0.5s;
}
.cookie-modal {
  background: #FFF;
  min-width: 306px;
  max-width: 96vw;
  border-radius: 24px;
  box-shadow: 0 6px 28px 0 rgba(24,75,119,0.15);
  padding: 34px 28px 26px 28px;
  color: #184B77;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  animation: fadeinup 0.7s;
}
.cookie-modal h2 { font-size: 1.5rem; margin-bottom: 18px; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  margin-bottom: 11px;
}
.cookie-modal .toggle {
  width: 38px; height: 22px;
  background: #F2F4F7;
  border-radius: 11px;
  position: relative;
  transition: background 0.12s;
  cursor: pointer;
  border: 1.5px solid #53B7A9;
  margin-left: 13px;
}
.cookie-modal .toggle[data-checked="true"] {
  background: #53B7A9;
}
.cookie-modal .toggle:after {
  content: '';
  position: absolute;
  top: 2px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 1px 5px 0 rgba(24,75,119,0.10);
  transition: left 0.16s;
}
.cookie-modal .toggle[data-checked="true"]:after {
  left: 16px;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.6;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .container { padding: 0 6vw; }
  .footer-menu, address ul { gap: 10px; }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 22px;
  }
  .feature-grid > div { width: 100%; min-width: 0; }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-social, address ul, .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  header, main, footer, section, .content-wrapper, .card-container, .content-grid {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .container { padding: 0 8px; }
  .section, .news-preview, .guides-preview, .news-listing, .guides-listing, .rankings-listing, .services, .faqs, .about-section, .values, .partners, .contact-section, .newsletter, .newsletter-form, .thankyou, .testimonial, .legal {
    padding: 24px 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid { flex-direction: column; gap: 22px; align-items: stretch; }
  .feature-grid > div { width: 100%; min-width: 0; }
  .content-grid, .card-container { flex-direction: column; gap: 15px; }
  .testimonials {
    padding: 24px 8px;
    margin-bottom: 22px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .footer-social { margin-top: 10px; }
  .about-section, .values, .partners, .thankyou, .newsletter, .newsletter-form {
    border-radius: 20px;
  }
  .hero {
    padding: 30px 0 38px 0;
    border-radius: 0 0 28px 28px;
    min-height: 170px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .section { margin-bottom: 38px; }
  .testimonials, .newsletter, .newsletter-form, .thankyou, .legal {
    margin-bottom: 28px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.03rem; }
  .section, .news-preview, .news-listing, .legal { padding: 14px 2px; }
  .hero { padding: 16px 0 22px 0; }
}

/* === UTILITIES === */
.d-none { display: none !important; }
[hidden] { display: none !important; }

/* === Z-INDEX MANAGEMENT === */
header { z-index: 35; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }

/* === PLAYFUL DYNAMIC DECORATIVE EXTRAS === */
.card:before {
  content: "";
  position: absolute;
  top: -10px; right: -10px;
  width: 38px; height: 38px;
  background: #FFE561;
  opacity: 0.38;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: twinkle 2.9s infinite alternate;
}
@keyframes twinkle {
  0% { opacity: 0.13; }
  100% { opacity: 0.6; }
}
.feature-grid > div:after {
  content: "";
  position: absolute;
  bottom: -16px; left: -12px;
  width: 24px; height: 24px;
  background: #FFB7E4;
  border-radius: 50%;
  opacity: 0.27;
  z-index: 0;
}

/* === SCROLLBAR STYLING (WEBKIT) === */
::-webkit-scrollbar { width: 10px; background: #F2F4F7; }
::-webkit-scrollbar-thumb {
  background: #53B7A9;
  border-radius: 14px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFB7E4;
}
