/* 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,
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #14213d;
  color: #f9fafb;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
/* Import fonts (use Google Fonts in <head>, assumed loaded) */
:root {
  --primary: #2466A8;
  --primary-dark: #193d60;
  --secondary: #F2CB05;
  --accent: #FFFFFF;
  --background: #14213d;
  --surface: #1b263b;
  --card: #212c41;
  --neon: #41e9fb;
  --danger: #ed254e;
  --shadow: 0 4px 20px rgba(27, 38, 59,0.16);
  --radius: 18px;
  --font-display: 'Baloo 2', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

*::selection {
  background: var(--primary);
  color: var(--accent);
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #14213d 70%, var(--primary));
  width: 100%;
  box-shadow: 0 2px 8px rgba(20,33,61,0.09);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 0 18px;
}
.logo img {
  height: 52px;
  width: auto;
  padding: 6px 0;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.22s;
}
nav a:hover,
nav a:focus {
  color: var(--secondary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 40px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 14px 0 rgba(65,233,251,.13);
  transition: background 0.25s, box-shadow 0.22s, color 0.22s;
  margin-left: 18px;
}
.btn-primary {
  background: var(--neon);
  color: #11203c;
  border: 2px solid var(--primary);
  text-shadow: 0 0 6px #e8ebed66;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 0 8px var(--neon), 0 2px 20px rgba(36,102,168,0.15);
  border-color: var(--secondary);
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  background: var(--neon);
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #14213d;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.18s;
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 140;
}
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: #3a475f;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,38,59,0.96);
  box-shadow: 0 10px 40px 0 rgba(20,33,61,0.30);
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.42,0,.56,1), opacity 0.22s;
  z-index: 200;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 28px 0 14px 24px;
  font-size: 2rem;
  background: none;
  color: var(--neon);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 34px 0 34px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}
@media (max-width: 990px) {
  header .container nav,
  header .container .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- MAIN SECTIONS & LAYOUTS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .content-wrapper, .text-section {
    gap: 18px;
  }
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--neon);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 0 16px #41e9fb22, 0 1px 0 #14213d88;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 0 10px #f2cb0564;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 10px;
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  line-height: 1.75;
}
p,
ul,
li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #f9fafb;
  line-height: 1.75;
}
strong { color: var(--secondary); font-weight: 700; }
a { color: var(--neon); text-decoration: underline; }
a:hover { color: var(--secondary); }

ul {
  list-style-type: disc;
  margin-left: 26px;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 10px;
  position: relative;
}
ol {
  margin-left: 28px;
  margin-bottom: 18px;
}

/* CARD CONTAINERS and FLEX LAYOUTS */
.card-container,
.card-grid,
.feature-grid,
.activity-list,
.inspiration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  align-items: flex-stretch;
  justify-content: flex-start;
}
.card, .feature-item, .activity-card, .inspiration-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  border: 1.5px solid #27417799;
  transition: box-shadow 0.23s, border-color 0.18s, transform 0.16s;
}
.card:hover, .feature-item:hover, .activity-card:hover, .inspiration-item:hover {
  box-shadow: 0 3px 22px 0 #41e9fb44;
  border-color: var(--neon);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 6px;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 12px var(--neon));
}

@media (max-width: 900px) {
  .feature-grid, .activity-list, .inspiration-list {
    flex-direction: column;
    gap: 24px;
  }
  .card, .feature-item, .activity-card, .inspiration-item {
    width: 100%;
    min-width: 0;
  }
}
@media (min-width: 901px) {
  .feature-grid .feature-item, .activity-list .activity-card, .inspiration-list .inspiration-item {
    min-width: 240px;
    max-width: 300px;
    flex: 1 1 220px;
  }
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  background: var(--accent);
  color: #19213d;
  border-radius: var(--radius);
  box-shadow: 0 2px 22px #41e9fb11;
  margin-bottom: 24px;
  border-left: 6px solid var(--primary);
  border-top: 0.5px solid #e8ebed54;
}
.testimonial-card p {
  font-size: 1.125rem;
  font-style: italic;
  color: #19213d;
  line-height: 1.55;
  margin-bottom: 0;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: #3a475f;
  letter-spacing: 0.01em;
}

/* FILTER OPTIONS AND GUIDES/DOWNLOADS */
.filter-options, .quick-tips, .guides-overview, .downloadables, .activity-preview {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 20px;
  margin-top: 10px;
  box-shadow: 0 2px 12px 0 rgba(36,102,168,0.08);
}
.filter-options ul, .quick-tips ul, .guides-overview ul, .downloadables ul {
  margin-left: 16px;
}
.filter-options li, .quick-tips li, .guides-overview li, .downloadables li {
  color: #e6e4ef;
}

/* FOOTER */
footer {
  background: #1b263b;
  width: 100%;
  padding: 32px 0 16px 0;
  color: #d9e4f5;
  border-top: 2px solid var(--primary);
  margin-top: 60px;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-links {
  margin-bottom: 4px;
  color: var(--neon);
  font-size: 1.05rem;
}
.footer-links a {
  color: var(--neon);
  text-decoration: none;
  margin: 0 3px;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--secondary);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.brand-info img {
  height: 32px;
}
.contact-short {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contact-short span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.98rem;
}
.contact-short img {
  height: 19px;
  width: 19px;
  vertical-align: middle;
  filter: drop-shadow(0 0 8px var(--secondary));
}
@media (max-width: 700px) {
  .contact-short {
    flex-direction: column;
    gap: 10px;
  }
}

/* BUTTONS & INTERACTIONS */
button,
.btn {
  transition: background 0.23s, color 0.18s, box-shadow 0.22s, border-color 0.17s, transform 0.14s;
}
button:focus, .btn:focus {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  a,
  button,
  .btn,
  .card,
  .feature-item,
  .testimonial-card {
    transition: all 0.22s cubic-bezier(.31,.74,.47,1), box-shadow 0.22s, color 0.16s;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #19213d;
  color: #f9fafb;
  box-shadow: 0 -4px 30px rgba(36,102,168,0.20);
  border-radius: 20px 20px 0 0;
  padding: 30px 12px 24px 22px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  transition: opacity 0.42s, transform 0.36s;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.65;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  background: var(--neon);
  color: #18233d;
  border: none;
  border-radius: 9px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 20px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 #41e9fb55;
  transition: background 0.17s, color 0.18s, box-shadow 0.19s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--secondary);
  color: #14213d;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--neon);
  border: 1.5px solid var(--neon);
}
.cookie-btn.settings:hover {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 8px 18px 12px;
  }
  .cookie-actions {
    width: 100%;
    gap: 12px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27, 38, 59, 0.87);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #19213d;
  border-radius: 22px;
  max-width: 396px;
  width: 90vw;
  padding: 37px 28px 20px 28px;
  box-shadow: 0 4px 32px rgba(36,102,168,0.26);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  animation: cookieModalPop 0.44s cubic-bezier(.53,1.4,0.56,1) 1;
}
@keyframes cookieModalPop {
  from { opacity:0; transform: scale(0.86); }
  to { opacity:1; transform: scale(1); }
}
.cookie-modal-content h3 {
  color: var(--secondary);
  margin-bottom: 7px;
  font-size: 1.18rem;
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category-label {
  font-size: 1rem;
  color: var(--accent);
  flex-grow: 1;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #2a345f;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: none;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: var(--primary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px; left: 4px;
  width: 16px;
  height: 16px;
  background: var(--neon);
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle:checked:before {
  left: 20px;
  background: var(--secondary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--secondary);
  font-size: 1.55rem;
  cursor: pointer;
  padding: 5px 7px;
  border-radius: 8px;
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: #19213d33;
}

/* END Cookie Modal */

/* RESPONSIVE UTILITIES */
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  section, .section {
    padding: 24px 2px;
    margin-bottom: 40px;
  }
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.38rem;
  }
  .btn, .btn-primary {
    min-width: 120px;
    font-size: 15px;
    padding: 0 18px;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
  .feature-item, .activity-card, .inspiration-item {
    padding: 17px 10px 13px 10px;
  }
  .cookie-modal-content {
    padding: 19px 8px 8px 15px;
  }
}

/* --- Misc --- */
img, svg {
  max-width: 100%;
  display: block;
}

::-webkit-scrollbar {
  width: 10px;
  background: #1e2746;
}
::-webkit-scrollbar-thumb {
  background: #193d60;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2466a8;
}

/* Utility classes */
.text-center { text-align: center; }
.text-right { text-align: right !important; }
.flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.gap-20 { gap: 20px !important; }
.mt-2 { margin-top: 2rem !important; }

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

/* --- END OF STYLE.CSS --- */
