/* ====================================================== */
/* CSS RESET & BASE STYLES */
/* ====================================================== */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #EDF2F7;
  color: #263959;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.65;
  /* for playful/dynamic: subtle animated bg dots for desktop */
  position: relative;
  overflow-x: hidden;
}
:root {
  --primary: #263959;
  --secondary: #FFBC42;
  --accent: #EDF2F7;
  --fancy-blue: #4185f4;
  --fancy-pink: #f95f94;
  --fancy-green: #47e774;
  --radius: 20px;
  --shadow: 0 4px 18px rgba(38,57,89,0.12),0 1.5px 4px rgba(255,188,66,0.10);
}
img {
  max-width: 100%;
  display: block;
}
*, *:before, *:after { box-sizing: inherit; }

/* ====================================================== */
/* TYPOGRAPHY */
/* ====================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.075rem;
  margin-bottom: 10px;
}
p, li, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.2rem;
  color: var(--fancy-pink);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.95rem;
  background: var(--fancy-blue);
  color: #fff;
  border-radius: 11px;
  margin-top: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
a {
  color: var(--fancy-blue);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.68,-0.55,.27,1.55);
}
a:hover, a:focus { color: var(--fancy-pink); }
strong {
  font-weight: 700;
}

/* Fun playful font for large headings and buttons */
.hero h1, .hero h2, .cta-primary, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', cursive, Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
}

/* ====================================================== */
/* CONTAINERS & LAYOUTS (FLEX ONLY) */
/* ====================================================== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1040px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ====================================================== */
/* HEADER & NAVIGATION */
/* ====================================================== */
header {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding: 0;
  box-shadow: 0 2px 13px rgba(38,57,89,0.07);
  position: relative;
  z-index: 102;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 0;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 18px;
  margin-bottom: 0;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
  text-shadow: 0 2px 4px rgba(38,57,89,0.04);
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.main-nav .cta-primary {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.07rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 7px 22px;
  transition: background 0.19s cubic-bezier(.68,-0.55,.27,1.55), color 0.13s;
  box-shadow: 0 2px 7px rgba(255,188,66,0.16);
  margin-left: 8px;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: var(--fancy-pink);
  color: #fff;
}

button.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 40px;
  font-size: 2.1rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 16px; 
  box-shadow: 0 1px 7px rgba(38,57,89,0.07);
  transition: background 0.12s;
}
button.mobile-menu-toggle:hover,
button.mobile-menu-toggle:focus {
  background: var(--fancy-pink);
  color: #fff;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: flex;
  }
}

/* ====================================================== */
/* MOBILE MENU */
/* ====================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-110%);
  opacity: 1;
  transition: transform 0.35s cubic-bezier(.78,-0.1,.34,1.19);
  box-shadow: 2px 0 16px rgba(38,57,89,0.12);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--fancy-pink);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px 22px 14px 22px;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 14px 24px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 11px 6px;
  border-radius: 14px;
  text-align: left;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--fancy-blue);
  color: #fff;
}
.mobile-nav .cta-primary {
  background: var(--secondary);
  color: var(--primary) !important;
  margin-top: 8px;
  font-size: 1.22rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(255,188,66,0.14);
  padding: 13px 17px;
}
.mobile-nav .cta-primary:hover,
.mobile-nav .cta-primary:focus {
  background: var(--fancy-pink);
  color: #fff !important;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ====================================================== */
/* HERO SECTION */
/* ====================================================== */
.hero {
  background: var(--accent);
  padding: 38px 0 44px 0;
  margin-bottom: 60px;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  box-shadow: 0 6px 28px rgba(255,188,66,0.13);
  position: relative;
  overflow: hidden;
}
.hero .container { flex-direction: column; }
.hero .content-wrapper {
  flex: 1 1 0%;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 12px;
}
.hero h1, .hero h2 {
  color: var(--primary);
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.13;
  font-family: 'Montserrat', cursive, Arial, Helvetica, sans-serif;
}
.hero p {
  font-size: 1.14rem;
  color: var(--fancy-pink);
  font-weight: 400;
  margin: 2px 0 14px 0;
}
.hero .cta-primary {
  margin-top: 20px;
}

/* playful bubbles experience for desktop! */
@media (min-width: 1000px) {
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.13;
  z-index: 0;
  filter: blur(1px);
  pointer-events: none;
}
.hero::before {
  background: var(--fancy-blue);
  width: 140px; height: 140px;
  top: 28px; left: -65px;
}
.hero::after {
  background: var(--fancy-pink);
  width: 120px; height: 120px;
  bottom: -55px; right: -40px;
}
}

/* ====================================================== */
/* BUTTONS & CTA */
/* ====================================================== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 14px 32px;
  margin-top: 8px;
  margin-bottom: 8px;
  border: none;
  box-shadow: 0 2px 9px 0 rgba(255,188,66,0.18);
  text-shadow: 0 1px 5px rgba(38,57,89,0.04);
  cursor: pointer;
  transition: background 0.18s cubic-bezier(.68,-0.55,.27,1.55), color 0.18s, box-shadow 0.18s;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--fancy-pink);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(249,95,148,0.25);
  outline: none;
  text-decoration: none;
}

/* playful bouncy effect on tap/click */
.cta-primary:active {
  transform: scale(0.97);
}

/* ====================================================== */
/* FEATURE LIST, CARDS, HIGHLIGHT PANELS */
/* ====================================================== */
/* Features Overview (Index), Feature-Reviews, etc. */
.feature-list, .newsletter-benefits, .values-list, .values-highlight, .contact-snippet, .quick-faqs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  padding-left: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px 20px 10px;
  transition: transform 0.19s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.18s;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-list li:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  box-shadow: 0 12px 42px 0 rgba(255,188,66,0.18);
}
.feature-list img {
  width: 46px;
  height: 46px;
}
.feature-list h3 {
  color: var(--fancy-blue);
  font-weight: 700;
}

/* Cards and Grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s, transform 0.20s;
}
.card:hover {
  box-shadow: 0 14px 48px 0 rgba(65,133,244,0.14);
  transform: translateY(-2px) scale(1.02);
}

.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: 10px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  color: #22313E;
  box-shadow: 0 3px 16px 0 rgba(38,57,89,0.09);
  font-size: 1.07rem;
  margin-bottom: 20px;
  margin-top: 12px;
  min-width: 210px;
  max-width: 560px;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--fancy-pink);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ARTICLE & DIRECTORY LISTS */
.article-list, .directory-list, .project-list, .newsletter-benefits, .timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  padding-left: 0;
}
.article-list li, .directory-list li, .project-list li, .timeline li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 9px 0 rgba(65,133,244,0.09);
  padding: 19px 18px 13px 15px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.15s;
  margin-bottom: 6px;
}
.article-list li:hover, .directory-list li:hover, .project-list li:hover {
  box-shadow: 0 7px 30px 0 rgba(65,133,244,0.11);
  transform: translateY(-3px) scale(1.01) rotate(1.1deg);
}

.values-list li::before, .values-highlight li::before, .newsletter-benefits li::before {
  content: '★';
  color: var(--fancy-pink);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-right: 8px;
}
.values-list li, .values-highlight li, .newsletter-benefits li {
  font-size: 1.07rem;
}

.download-links {
  display: flex; flex-direction: column; gap: 12px; margin-top: 16px;
}
.download-links li {
  display: flex; align-items: center; gap: 8px; color: var(--fancy-blue);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.15s;
}
.download-links li:hover { color: var(--fancy-pink); }

/* ====================================================== */
/* TABLES (COMPARISON) */
/* ====================================================== */
.comparison-table {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(65,133,244,0.04);
  margin-bottom: 17px;
  font-size: 1rem;
  border-collapse: separate;
  border-spacing: 0;
}
.comparison-table th, .comparison-table td {
  text-align: left;
  padding: 14px 18px 13px 13px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.comparison-table th {
  background: var(--fancy-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 2px solid #ffffff15;
}
.comparison-table tr:nth-child(even) td {
  background: var(--accent);
}
.comparison-table tr:nth-child(odd) td {
  background: #fff;
}
.comparison-table td {
  font-size: 1rem;
}
.star-explainer {
  font-size: 1rem;
  color: var(--fancy-pink);
  margin-top: 8px;
}

/* ====================================================== */
/* SPECIAL SECTIONS (SPOTLIGHT, TIMELINE, ETC.) */
/* ====================================================== */
.spotlight-articles ul,
.future-perspective ul,
.event-calendar ul,
.resource-links ul,
.mentorship-opportunities ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  margin-top: 0;
}

.spotlight-articles h3, .future-perspective h3 {
  margin-bottom: 10px;
  color: var(--fancy-pink);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin: 14px 0 28px 0;
}
.timeline li {
  position: relative;
  padding-left: 28px;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 8px; top: 7px;
  width: 10px; height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  border: 2px solid var(--fancy-blue);
  z-index: 2;
}

/* ====================================================== */
/* NEWSLETTER SIGNUP, SUCCESS, ETC. */
/* ====================================================== */
.newsletter-signup, .thank-you {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius);
  margin-bottom: 38px;
  padding: 40px 10px 40px 10px;
  box-shadow: 0 3px 14px 0 rgba(255,188,66,0.11);
}

.thank-you h1,
.newsletter-signup h2 { color: var(--fancy-pink); }

.next-steps-info ul {
  display: flex; flex-direction: column; gap: 7px;
}
.next-steps-info li {
  color: var(--primary);
  font-size: 1.02rem;
}

/* ====================================================== */
/* FOOTER */
/* ====================================================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 42px 0 24px 0;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #fff;
  margin: 0;
}
.footer-contact img {
  width: 19px; height: 19px;
  filter: brightness(1.2);
}
footer small {
  color: #e7ecee;
  margin-top: 13px;
  display: block;
  font-size: 0.96em;
}

/* ====================================================== */
/* LEGAL PAGE SECTIONS */
/* ====================================================== */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1.6px 6.7px 0 rgba(65,133,244,0.07);
  padding: 38px 22px;
  margin-bottom: 40px;
}
.legal h1, .legal h2 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
}
.legal h2 {
  font-size: 1.2rem;
}
.legal ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}
.legal p, .legal li {
  font-size: 1rem;
}

/* ====================================================== */
/* FILTERS, CATEGORY TAGS, ETC. */
/* ====================================================== */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--accent);
  border-radius: 14px;
  padding: 12px 16px;
}
.filter-options ul {
  display: flex;
  flex-direction: row;
  gap: 17px;
  list-style: none;
  margin: 0; padding: 0;
}
.filter-options ul li {
  cursor: pointer;
  color: var(--primary);
  background: #fff;
  border-radius: 12px;
  padding: 5px 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.17s, color 0.15s;
}
.filter-options ul li:hover { background: var(--secondary); color: var(--primary); }

/* ====================================================== */
/* RESPONSIVE DESIGN – MOBILE FIRST */
/* ====================================================== */
@media (max-width: 1050px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  header .container { min-height: 62px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 58px;
  }
  
  .content-wrapper, .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero h1, .hero h2 { font-size: 2rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.08rem; }
  .section {
    padding: 27px 7px;
    margin-bottom: 34px;
  }
  .hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 22px;
    padding-bottom: 19px;
    margin-bottom: 33px;
  }
  .feature-list li, .article-list li, .directory-list li, .project-list li, .timeline li {
    padding: 11px 7px 10px 9px;
    font-size: .98rem;
  }
  .feature-list img {
    width: 35px;
    height: 35px;
  }
  .testimonial-card {
    font-size: .99rem;
    padding: 13px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 10px 6px 9px 4px;
    font-size: .94rem;
  }
  .newsletter-signup, .thank-you {
    padding: 29px 4px 26px 4px;
    border-radius: 13px;
  }
  .footer-contact {
    gap: 6px;
  }
  .filter-options ul {
    flex-direction: column;
    gap: 9px;
  }
  .content-grid, .card-container {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  html { font-size: 14px; }
  header .container { padding: 0 7px; }
  .footer-nav { gap: 11px; }
  .container { padding: 0 7px; }
}

/* Force all main content spacing even between cards/sections */
main > section, .section, .feature-list li, .card, .testimonial-card, .article-list li, .directory-list li {
  margin-bottom: 22px;
}

/* ====================================================== */
/* ANIMATIONS & INTERACTIVE MICRO-EFFECTS */
/* ====================================================== */
.cta-primary, .main-nav a, .mobile-nav a, .feature-list li, .card, .testimonial-card, .filter-options ul li {
  transition: box-shadow 0.25s, background 0.21s, color 0.18s, transform 0.16s;
}
.feature-list li, .card, .section {
  will-change: transform, box-shadow;
}
.card:hover, .feature-list li:hover {
  animation: playfulBounce 0.32s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes playfulBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.035,0.98) rotate(-1.2deg); }
  70% { transform: scale(0.98,1.03) rotate(0.7deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* playful tag pop effect */
.tag {
  animation: tagPop 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes tagPop {
  from { transform: scale(0.80); opacity: 0.7; }
  to   { transform: scale(1); opacity: 1; }
}

/* CTA pulsing short idle effect */
@media (hover: hover) {
  .cta-primary:hover {
    animation: pulse 0.25s;
  }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* playful underline for links on hover */
a, .main-nav a, .footer-nav a, .mobile-nav a {
  position: relative;
}
a:hover::after, .main-nav a:hover::after, .footer-nav a:hover::after, .mobile-nav a:hover::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px; bottom: 1px;
  height: 3px;
  background: var(--fancy-blue);
  border-radius: 2px;
  opacity: 0.37;
  transition: width 0.2s, opacity 0.11s;
  width: 80%;
}

/* ====================================================== */
/* COOKIE CONSENT BANNER + MODAL */
/* ====================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2222;
  background: #fff;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 -6px 24px 0 rgba(38,57,89,0.16);
  padding: 20px 19px 16px 19px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
  font-size: 1.05rem;
  animation: slideUp 0.52s cubic-bezier(.47,1.64,.41,.84);
}
@keyframes slideUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 1 72%;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  outline: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 9px 18px;
  box-shadow: 0 2px 10px rgba(255,188,66,0.12);
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
}
.cookie-banner button.accept {
  background: var(--fancy-green);
  color: var(--primary);
}
.cookie-banner button.reject {
  background: var(--fancy-pink);
  color: #fff;
}
.cookie-banner button.settings {
  background: var(--fancy-blue);
  color: #fff;
}
.cookie-banner button:hover {
  opacity: 0.89;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    font-size: .98rem;
    padding: 11px 9px 11px 9px;
  }
  .cookie-banner__buttons { gap: 9px; }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 3333;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,62,0.16);
  backdrop-filter: blur(1.2px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  width: 96vw;
  max-width: 420px;
  box-shadow: 0 11px 42px rgba(65,133,244,0.19);
  padding: 28px 23px 24px 23px;
  animation: modalPop 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@keyframes modalPop {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--fancy-pink);
  font-size: 1.21rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
  margin-bottom: 10px;
}
.cookie-toggle {
  width: 42px; height: 22px;
  border-radius: 40px;
  background: var(--accent);
  position: relative;
  appearance: none;
  outline: none;
  transition: background 0.16s;
  margin-right: 7px;
}
.cookie-toggle:checked {
  background: var(--fancy-green);
}
.cookie-toggle::-webkit-slider-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 1px; top: 1px;
  box-shadow: 0 2px 4px rgba(38,57,89,0.07);
  transition: background 0.13s, left 0.13s;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 13px;
  background: var(--fancy-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.31rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: var(--fancy-blue);
}
/* End Cookie Modal */

/* ====================================================== */
/* MISCELLANEOUS: FORMS, MAPS, CONTACT, ETC. */
/* ====================================================== */
.contact-details, .contact-snippet {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
}
.contact-details li, .contact-snippet li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-location {
  background: var(--fancy-blue);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 1.03rem;
}
.office-hours {
  background: #fff;
  padding: 32px 8px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(65,133,244,0.07);
  margin-bottom: 32px;
}
.quick-faqs li {
  padding-left: 0;
}

/* ====================================================== */
/* FORM ELEMENTS (newsletter forms could be added easily) */
/* ====================================================== */
input, select, textarea {
  border: 1.5px solid var(--fancy-blue);
  border-radius: 9px;
  font-size: 1rem;
  padding: 8px 14px;
  font-family: inherit;
  outline: none;
  margin-bottom: 13px;
  width: 100%;
  transition: border-color 0.15s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
}

/* ====================================================== */
/* END. */
/* ====================================================== */
