/* CSS RESET & NORMALIZE */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #253446;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #2ae9fc;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,1,.75,.9);
}
a:hover, a:focus {
  color: #ff3399;
  outline: none;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  display: inline-block;
  border: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #172139;
  letter-spacing: -0.5px;
  margin-bottom: 0.75em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-top: 1em;
}
h3 {
  font-size: 1.25rem;
  margin-top: 1em;
}
p, li, blockquote {
  font-size: 1.125rem;
  color: #253446;
  margin-bottom: 1em;
}
strong {
  color: #222;
}
blockquote {
  border-left: 4px solid #2ae9fc;
  padding-left: 1em;
  font-style: italic;
  background: #E5FFF9;
  margin-bottom: 1em;
  border-radius: 8px;
}

/* BRAND COLORS & UTILITIES */
:root {
  --primary: #253446;
  --secondary: #6BC6B8;
  --accent: #F5F8FA;
  --electric-cyan: #2ae9fc;
  --electric-pink: #ff3399;
  --electric-purple: #a143ff;
  --electric-yellow: #ffe447;
  --grey: #eaeaea;
  --white: #fff;
  --dark: #172139;
  --shadow: 0 2px 16px 0 rgba(32, 220, 221, 0.10), 0 1.5px 6px 0 rgba(84, 48, 232,0.14);
}

/* LAYOUT CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(42, 233, 252, 0.07);
  width: 100%;
  z-index: 100;
  min-height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.035em;
  padding: 6px 4px;
  border-radius: 4px;
  transition: color 0.15s, background 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--electric-pink);
  background: var(--electric-yellow);
}
.cta-primary {
  background: var(--electric-cyan);
  color: var(--primary);
  border-radius: 18px;
  padding: 10px 28px;
  margin-left: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(42, 233, 252, 0.12);
  transition: background 0.25s, color 0.15s, box-shadow 0.18s;
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--electric-pink);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 51, 153, 0.16);
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--electric-pink);
  cursor: pointer;
  margin-left: 20px;
  z-index: 130;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--electric-cyan);
  outline: 2px solid var(--electric-cyan);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37, 52, 70, 0.97);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.39,.94,.26,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--electric-yellow);
  font-size: 2.2rem;
  margin: 32px 0 28px 24px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 140;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--electric-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-left: 34px;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--electric-cyan);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.19s, color 0.16s;
  display: block;
  min-width: 120px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--electric-pink);
  color: var(--white);
}

/* =================== LAYOUT SECTIONS =================== */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  width: 100%;
}
section.hero {
  background: linear-gradient(90deg, var(--electric-cyan) 6%, var(--white) 90%);
  box-shadow: 0 2px 24px rgba(42,233,252,0.06);
  margin-bottom: 60px;
  padding: 54px 0 44px 0;
}
section.hero h1 {
  font-size: 2.65rem;
  color: var(--primary);
  margin-bottom: 14px;
  margin-top: 0;
  letter-spacing: -1px;
}
section.hero p {
  font-size: 1.26rem;
  margin-bottom: 1.7em;
  color: var(--dark);
  max-width: 680px;
}

/* Feature grid (flexbox only) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px 24px 26px 24px;
  min-width: 230px;
  max-width: 330px;
  min-height: 210px;
  transition: transform 0.17s cubic-bezier(.4,1,.75,.9),box-shadow 0.16s;
}
.feature-item img {
  width: 46px; height: 46px;
}
.feature-item h3 {
  font-size: 1.16rem;
  color: var(--primary);
  margin-bottom: 5px;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.feature-item p {
  font-size: 1.03rem;
  color: var(--primary);
  margin-bottom: 0;
}
.feature-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 32px 0 rgba(255,51,153,0.16), 0 2.5px 8px 0 rgba(42,233,252,0.11);
  background: var(--white);
}

/* Testimonials */
.testimonials {
  background: var(--accent);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  margin-top: 12px;
}
.testimonial-card blockquote {
  margin: 0;
  background: transparent;
  color: var(--primary);
  font-size: 1.16rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-meta img {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--electric-cyan);
}
.testimonial-meta span {
  font-size: 1rem;
  color: var(--primary);
}

/* Cards and Grid Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px 18px 20px;
}

.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;
  margin-bottom: 20px;
}
.text-section {
  margin-bottom: 18px;
  background: transparent;
}

/* CTA Section */
section.cta {
  background: linear-gradient(95deg, var(--white) 65% , #ffe447 108%);
  border-radius: 32px;
  box-shadow: 0 4px 28px rgba(255,228,71,0.09);
}
.cta h2 {
  font-size: 2.1rem;
  color: var(--dark);
}
.cta-primary {
  margin-top: 16px;
}

/* Legal/policy sections */
.legal {
  background: var(--accent);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 22px;
  box-shadow: var(--shadow);
}
.text-section h2, .text-section h3 {
  margin-bottom: 12px;
  margin-top: 18px;
}
/* Confirmation (thank-you) section */
section.confirmation {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 64px 24px 48px 24px;
}

/* Events/calendar section */
.events-calendar ul li,
.blog ul li {
  font-size: 1.03rem;
  background: var(--accent);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 5px rgba(42,233,252,0.06);
  color: var(--primary);
}

/* Newsletter section */
section.newsletter {
  background: #F5F8FA;
  border-radius: 18px;
}
.newsletter h2 {
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 8px;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 50px 0 18px 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 42px;
}
.footer-brand {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
}
.footer-contact, .footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 220px;
}
.footer-contact h3, .footer-links h3, .footer-legal h3 {
  font-size: 1.08rem;
  color: var(--electric-cyan);
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.footer-contact p, .footer-links a, .footer-legal a {
  color: var(--accent);
  font-size: 1rem;
}
.footer-links a, .footer-legal a {
  text-decoration: none;
  transition: color 0.14s;
}
.footer-links a:hover, .footer-legal a:hover {
  color: var(--electric-yellow);
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 7px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.footer-social img {
  width: 36px; height: 36px;
  background: var(--electric-pink);
  border-radius: 50%;
  padding: 7px;
  transition: background 0.25s;
}
.footer-social a:hover img {
  background: var(--electric-yellow);
}
.footer-copyright {
  color: var(--accent);
  font-size: 0.98rem;
  margin-top: 22px;
  text-align: center;
}

/* Spacing for section structure */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Buttons */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  transition: box-shadow 0.16s, background 0.22s, color 0.17s;
  outline: none;
}
button:active {
  transform: scale(0.97);
}
button:focus {
  outline: 2px solid var(--electric-pink);
}

/* ============== COOKIE CONSENT BANNER & MODAL ============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #253446;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 14px 16px 14px;
  z-index: 999;
  font-size: 1.06rem;
  box-shadow: 0 -3px 12px rgba(42,233,252,0.09);
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.2,.92,.48,1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-left: 24px;
}
.cookie-banner button,
.cookie-banner .cookie-settings {
  background: var(--electric-cyan);
  color: var(--primary);
  font-weight: bold;
  border-radius: 15px;
  padding: 8px 18px;
  font-size: 1rem;
  margin: 0;
  border: none;
  box-shadow: 0 1.5px 5px rgba(42,233,252,0.09);
  transition: background 0.15s, color 0.18s;
}
.cookie-banner button:hover,
.cookie-banner .cookie-settings:hover {
  background: var(--electric-pink);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(37,52,70,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(.16,.94,.4,1);
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  padding: 36px 30px 30px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 36px rgba(42,233,252, 0.09);
  width: 94%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-content h2 {
  color: var(--dark);
  margin-bottom: 3px;
  font-size: 1.22rem;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  font-size: 1.02rem;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--electric-cyan);
  width: 18px; height: 18px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-modal-content .modal-close {
  position: absolute;
  right: 24px; top: 20px;
  color: var(--electric-pink);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-content .modal-close:focus {
  color: var(--electric-cyan);
}

/* ============== MEDIA QUERIES ============== */
@media (max-width: 1050px) {
  .footer-row {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .footer-row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 16px;
  }
  .footer-row {
    gap: 16px;
    flex-direction: column;
  }
  .footer-brand, .footer-contact, .footer-legal, .footer-links {
    max-width: 100%;
  }
  .feature-item {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .testimonials .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    flex-direction: row;
    gap: 10px;
    min-height: 56px;
    padding: 0 10px;
  }
  .content-wrapper {
    align-items: flex-start;
    padding: 0;
  }
  .section, main > section, section.hero {
    padding: 26px 6px 28px 6px;
  }
  section.cta, section.confirmation, section.legal {
    padding: 25px 7px;
    border-radius: 0;
  }
  .testimonial-card,
  section.hero {
    border-radius: 0;
    padding: 17px 6px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  section.hero h1 {
    font-size: 1.68rem;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  h3 {
    font-size: 1.09rem;
  }
}
@media (max-width: 500px) {
  .footer-brand img { width: 46px; height: 46px; }
  .cookie-modal-content { max-width: 98vw; padding: 18px 7px; }
  .footer-social img { width: 29px; height: 29px; padding: 4px; }
  .mobile-nav { margin-left: 17px; }
}

/* ============== UTILITIES ============== */
.visible { opacity: 1 !important; pointer-events: auto !important; }
.hide { display: none !important; }

/* ============== FLEX WRAPPER UTILITIES ============= */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Animations */
.cta-primary, .feature-item, .card, .testimonial-card, .cookie-banner button, .cookie-modal-content {
  transition: box-shadow 0.17s cubic-bezier(.2,.92,.48,1), background 0.18s, color 0.16s;
}
.cta-primary:active { transform: scale(0.97); }

/* End of CSS */
