/* =========================================================
   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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-size: 100%;
    background: transparent;
    box-sizing: border-box;
}
html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: #F6F3E7;
  color: #2F4858;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2F4858;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #ff4e77;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.3em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2F4858;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.18rem; }
.subtitle {
  color: #ff4e77;
  font-size: 1.25rem;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}
blockquote {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #2F4858;
  background: #fff4e1;
  border-left: 6px solid #ff4e77;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 10px;
}
/* =========================================================
   BRAND COLORS & VARIABLES
   ========================================================= */
:root {
  --color-primary: #2F4858;
  --color-secondary: #2B98E1;
  --color-accent: #FFD60A;
  --color-bg: #F6F3E7;
  --color-white: #fff;
  --color-text-dark: #222F3E;
  --color-electric: #ff4e77;
  --color-purple: #7A5FFF;
  --color-teal: #16e0c9;
  --color-cyan: #6df3ff;
  --color-midgrey: #9FCAF6;
}

/* =========================================================
   COMMON LAYOUT - FLEXBOX ONLY
   ========================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(43, 152, 225, 0.14);
  transition: transform 0.22s cubic-bezier(.08,1.15,.12,.93), box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 36px rgba(255,78,119,0.20);
  z-index: 3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 22px 24px 22px 24px;
}
.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: #fff4e1;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(43, 152, 225, 0.13);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > div {
  flex: 1 1 210px;
  background: var(--color-white);
  border-radius: 14px;
  padding: 26px 22px 22px 22px;
  box-shadow: 0 2px 10px rgba(255, 78, 119, 0.08);
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.14s;
}
.feature-grid > div:hover {
  transform: translateY(-8px) scale(1.025) rotate(1deg);
  box-shadow: 0 6px 24px rgba(122, 95, 255, 0.14);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}
.section:last-child {
  margin-bottom: 10px;
}
.text-section {
  margin-bottom: 16px;
}
.faq-accordion > div {
  background: #eaf6ff;
  border-radius: 11px;
  margin-bottom: 18px;
  padding: 16px 18px;
  box-shadow: 0 1px 8px rgba(122, 95, 255, 0.05);
  transition: box-shadow 0.13s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 20px rgba(255,78,119,0.08);
}

/* =========================================================
   HEADER AND NAVIGATION
   ========================================================= */
header {
  background: #fff;
  padding: 0;
  border-bottom: 3px solid #FFD60A;
  box-shadow: 0 2px 16px rgba(122,95,255,0.07);
  width: 100vw;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 78px;
}
header a img {
  height: 46px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 0 20px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--color-primary);
  transition: background 0.17s, color 0.17s;
}
header nav a.cta-primary {
  background: linear-gradient(90deg, #ff4e77 40%, #FFD60A 100%);
  color: #2F4858;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  padding: 10px 22px;
  margin-left: 18px;
  border-radius: 99px;
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 24px rgba(255,78,119,0.11);
  border: none;
  outline: none;
  transition: transform 0.14s, box-shadow 0.15s, background 0.17s;
  display: inline-block;
}
header nav a.cta-primary:hover {
  background: linear-gradient(90deg, #FFD60A 25%, #ff4e77 95%);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 36px rgba(255,221,10,0.21);
}

/* Hamburger/mobile menu button */
.mobile-menu-toggle {
  background: var(--color-electric);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2.25rem;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.18s, transform 0.18s;
  z-index: 52;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD60A;
  color: #2F4858;
  transform: scale(1.12) rotate(7deg);
}

/* =========================================================
   MOBILE MENU (SLIDE OVERLAY + NAV LINKS)
   ========================================================= */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: rgba(47,72,88,0.94);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.65,.04,.23,1.13);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #FFD60A;
  font-size: 2.7rem;
  padding: 0 22px;
  margin: 24px 0 8px 12px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  z-index: 120;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ff4e77;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 24px;
  width: 96vw;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 16px 10px 12px 10px;
  transition: background 0.18s, color 0.14s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ff4e77;
  background: #fff4e1;
}
/* Overlay animation */
@media (max-width: 1020px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav {
    display: none;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #2F4858;
  color: #fff;
  font-size: 1rem;
  padding: 32px 0 18px 0;
  margin-top: 60px;
  border-top: 6px solid #FFD60A;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 45px;
  filter: brightness(1.25) drop-shadow(0 2px 20px #FFD60A44);
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: #FFD60A;
  text-decoration: underline;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #ff4e77;
}
.contact-info {
  color: #fff;
  line-height: 1.6;
  font-size: 0.99rem;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.social-media {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.social-media a img {
  width: 34px;
  height: 34px;
  transition: transform 0.15s, filter 0.15s;
  border-radius: 99px;
  filter: drop-shadow(0 1px 9px #FFD60A22);
}
.social-media a:hover img {
  transform: scale(1.13) rotate(-6deg);
  filter: drop-shadow(0 2px 16px #7A5FFF99);
}
.copyright {
  color: #fff;
  opacity: 0.85;
  font-size: 0.92rem;
  width: 100%;
  margin-top: 14px;
  text-align: center;
}

/* =========================================================
   BUTTONS & CALLS TO ACTION
   ========================================================= */
.cta-primary, .cta-primary:visited {
  display: inline-block;
  background: linear-gradient(90deg, #ff4e77 40%, #FFD60A 100%);
  color: #2F4858;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  padding: 14px 36px 13px 36px;
  margin: 14px 0;
  border-radius: 99px;
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 32px rgba(255,78,119,0.16);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s, box-shadow 0.14s, background 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #FFD60A 20%, #ff4e77 90%);
  color: #fff;
  transform: scale(1.07) rotate(-2.5deg);
  box-shadow: 0 14px 40px rgba(255,78,119,0.23);
  outline: 3px solid #FFD60A;
}
button, input[type="submit"], input[type="button"] {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

/* =========================================================
   FORMS, TABLES, MISC
   ========================================================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  box-shadow: 0 2px 14px rgba(255,78,119,0.07);
  border-radius: 12px;
  overflow: hidden;
}
thead {
  background: #FFD60A;
  color: var(--color-primary);
}
thead th {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: bold;
  padding: 14px 8px;
}
tbody tr {
  background: rgba(255,255,255,0.91);
  border-bottom: 1px solid #9FCAF6;
}
tbody td {
  padding: 13px 8px;
  font-size: 1.06rem;
}
tbody tr:hover {
  background: #FFF4E1;
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff4e1;
  color: #2F4858;
  box-shadow: 0 -4px 22px rgba(47,72,88,0.10);
  z-index: 150;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 22px 18px 18px 18px;
  font-size: 1.07rem;
  animation: cookieSlideUp 0.65s cubic-bezier(.59,.19,.64,1.39);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(120%); opacity: 0; }
  85% { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-left: 8px;
  margin-right: 4px;
  padding: 10px 24px;
  border-radius: 99px;
  border: none;
  background: #FFD60A;
  color: #2F4858;
  font-weight: bold;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  box-shadow: 0 2px 10px rgba(255,78,119,0.07);
  transition: background 0.17s, color 0.13s, transform 0.13s;
}
.cookie-banner button:hover {
  background: #ff4e77;
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner .cookie-settings {
  background: #2B98E1;
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: #7A5FFF;
  color: #FFD60A;
}
/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(47,72,88,0.55);
  z-index: 151;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 70px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal-backdrop.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal {
  background: #fff;
  color: #2F4858;
  border-radius: 24px;
  max-width: 420px;
  width: 90vw;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 12px 48px rgba(122,95,255,0.22), 0 2px 19px rgba(255,221,10,0.10);
  z-index: 155;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalPop 0.35s cubic-bezier(.26,1.15,.41,0.95);
}
@keyframes modalPop {
  0% { transform: scale(0.97) translateY(64px); opacity: 0; }
  75% { transform: scale(1.04) translateY(-12px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.55rem;
  color: #ff4e77;
}
.cookie-modal label {
  font-size: 1.09rem;
  font-weight: 500;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 8px 0 19px 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #FFD60A;
  width: 1.16em; height: 1.16em;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  color: #ff4e77;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: #FFD60A;
}

/* =========================================================
   RESPONSIVE (MOBILE-FIRST APPROACH)
   ========================================================= */
@media (max-width: 1000px) {
  .container { max-width: 98vw; }
  .feature-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .footer-brand img { height: 36px; }
  .feature-grid > div {
    min-width: 170px;
    padding: 20px 10px 18px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.47rem; }
  h3 { font-size: 1.17rem; }
  .section { padding: 26px 5vw; }
  .container { padding: 0 5vw; }
  .content-wrapper { gap: 20px; }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: unset; max-width: unset; width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px 0;
    align-items: stretch;
  }
  .social-media {
    margin-bottom: 0;
  }
  .mobile-nav {
    width: 100vw;
    gap: 10px;
    padding: 10px 20px;
  }
  /* Cookie */
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 0.99rem;
    padding: 16px 8px 12px 8px;
  }
  .cookie-modal {
    padding: 19px 8vw 20px 8vw;
    max-width: 98vw;
  }
}
@media (max-width: 500px) {
  header .container {
    padding: 0 7px;
    min-height: 56px;
  }
  .footer-brand img {
    height: 27px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.14rem; }
  .cookie-modal {
    padding: 12px 2vw 14px 2vw;
  }
}

/* =========================================================
   VIBRANT & ENERGETIC ACCENTS & DECORS
   ========================================================= */
/* Subtle dynamic underline effect */
h2, h3, h4 {
  position: relative;
}
h2::after, h3::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: -6px;
  width: 42px; height: 5px;
  background: linear-gradient(90deg,#FFD60A 33%, #ff4e77 88%);
  border-radius: 2.5px;
  z-index: 1;
}
h2::after { width: 52px; height: 6px; }
h3::after { left: 2px; width: 26px; height: 4px; }
h1 {
  letter-spacing: 0.03em;
  color: #ff4e77;
  text-shadow: 2px 2px 10px #FFD60A55, 0px 2px 48px #ff4e7709;
}

/* Micro hover animation on info cards */
.card, .feature-grid > div, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.17s, transform 0.13s;
}

/* Electric mark for FAQ links */
a, .faq-accordion a {
  position: relative;
  z-index: 1;
}
a:hover::after, .faq-accordion a:hover::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px; height: 4px; width: 100%;
  background: #FFD60A;
  border-radius: 2px;
  opacity: 0.5;
  z-index: 0;
  animation: underlinePop 0.23s;
}
@keyframes underlinePop {
  from { width: 10%; opacity: 0; }
  to { width: 100%; opacity: 0.5; }
}

/* =========================================================
   SPECIALS (UTILITIES & HELPER CLASSES)
   ========================================================= */
.mt-2 { margin-top: 2px; } .mt-8 { margin-top: 8px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }

/* =========================================================
   ACCESSIBILITY - FOCUS STYLES
   ========================================================= */
a:focus, button:focus, .cta-primary:focus {
  outline: 2.5px dashed #7A5FFF;
  outline-offset: 2.5px;
  background: #FFD60A33;
}

/* =========================================================
   PRINT FRIENDLY
   ========================================================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  body { background: #fff; color: #222; }
  a { color: #000; }
}
