/* CSS Reset & Normalize */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #f4f4f4;
  color: #21243c;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #21243c; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 12px 8px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; color: #21243c; }
h2 { font-size: 2rem; margin-bottom: 20px; color: #e2af2e; }
h3 { font-size: 1.25rem; margin-bottom: 16px; color: #09c6d8; font-weight: 700; }
p { margin-bottom: 16px; font-size: 1.12rem; }
strong { color: #21243c; font-weight: 700; }

/* ------------ Vibrant Energetic Color Palette (Helpers) ------------- */
:root {
  --primary: #21243c;
  --secondary: #e2af2e;
  --accent: #f4f4f4;
  --electric-blue: #09c6d8;
  --vivid-pink: #e81a7c;
  --neon-green: #30e87f;
  --deep-purple: #6549da;
  --shadow: rgba(33,36,60,0.13);
}

/* ----------------- Layout Containers --------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 24px var(--shadow);
  /* pop energy with colored border */
  border-left: 7px solid var(--electric-blue);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.section:hover {
  border-left: 7px solid var(--vivid-pink);
  box-shadow: 0 8px 32px rgba(14,24,61,0.30);
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px var(--shadow);
  position: relative;
  padding: 32px 26px;
  flex: 1 1 300px;
  min-width: 280px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 5px solid var(--secondary);
}
.card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 7px 32px rgba(233,29,126,0.15);
  border-left: 5px solid var(--electric-blue);
}

.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;
  background: #f4f4f4;
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(33,36,60,0.09);
  border-left: 5px solid var(--electric-blue);
  font-size: 1.08rem;
  transition: border-color 0.22s;
}
.testimonial-card:hover {
  border-left: 5px solid var(--vivid-pink);
  box-shadow: 0 5px 22px rgba(14,24,61,0.13);
}
.testimonial-card blockquote {
  color: #21243c;
  font-style: italic;
  font-size: 1.12rem;
}
.testimonial-card span {
  color: var(--deep-purple);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 14px;
  display: inline-block;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  margin: 20px 0;
}

/* ---------------- Tables (vibrant style) ------------------ */
table {
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px var(--shadow);
  font-size: 1.1rem;
}
th {
  background: var(--electric-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
td {
  border-bottom: 1px solid #ececec;
}
tr:last-child td { border-bottom: none; }

/* ----------- List styling for energetic punch ---------- */
ul {
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
  font-size: 1.05em;
}
ul li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0.3em;
  color: var(--vivid-pink);
  font-size: 1.25em;
}

/* ----------- Main Navigation --------------- */
header {
  background: var(--primary);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 0;
  position: relative;
  z-index: 40;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  max-width: 1160px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.main-navigation a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 7px;
  transition: background 0.2s, color 0.19s;
  position: relative;
}
.main-navigation a.logo {
  background: none;
  padding: 0;
  margin-right: 24px;
}
.main-navigation a:not(.logo):hover, .main-navigation a:not(.logo):focus {
  background: var(--vivid-pink);
  color: #fff;
}

/* ------------ Footer Navigation and Layout --------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.19s;
  padding: 7px 12px;
  border-radius: 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
  background: rgb(254,254,254,0.07);
}
footer .text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  font-size: 0.99rem;
  justify-content: center;
  align-items: center;
  color: #f4f4f4;
}
footer a {
  color: #e2af2e;
}

/* ------------ Buttons / CTAs --------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--electric-blue) 55%, var(--vivid-pink) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.13rem;
  padding: 15px 34px;
  border: none;
  border-radius: 38px;
  box-shadow: 0 5px 16px rgba(14,24,61,0.13);
  cursor: pointer;
  margin: 18px 0 0 0;
  letter-spacing: 0.04em;
  transition: background 0.19s, transform 0.18s, box-shadow 0.15s;
  outline: none;
  gap: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--vivid-pink) 55%, var(--neon-green) 100%);
  color: #fff;
  box-shadow: 0 7px 32px rgba(230,26,123,0.13);
  transform: scale(1.04) translateY(-2px);
}

/* ------------- Forms (if present) ------------------ */
input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
input, textarea, select {
  border: 2px solid var(--electric-blue);
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 15px;
  margin-top: 3px;
  background: #fff;
  color: #21243c;
  font-size: 1rem;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vivid-pink);
}

/* -------------- Cookie Consent Banner ----------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #21243c;
  color: #fff;
  z-index: 2000;
  box-shadow: 0 -3px 24px rgba(33,36,60,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 18px;
  font-size: 1.08rem;
  gap: 20px;
  border-top: 4px solid var(--electric-blue);
  animation: cookieFadeIn 0.7s cubic-bezier(.27,.8,.48,1.04);
}
@keyframes cookieFadeIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-left: 7px;
  padding: 10px 18px;
  border-radius: 22px;
  border: none;
  background: var(--vivid-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(230,26,123,0.13);
  transition: background 0.22s, color 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--neon-green);
  color: #21243c;
}
.cookie-banner .cookie-settings-btn {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--secondary);
  color: #21243c;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36, 36, 66, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 1;
  pointer-events: all;
  animation: cookieModalIn 0.42s cubic-bezier(.34,.98,.55,1.02);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-inner {
  background: #fff;
  color: #21243c;
  border-radius: 18px;
  box-shadow: 0 6px 42px rgba(14,24,61,0.28);
  max-width: 420px;
  width: 100%;
  padding: 34px 26px 27px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-inner h2 {
  margin-bottom: 8px;
  color: var(--electric-blue);
  font-size: 1.27rem;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #21243c;
  font-size: 1.6rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.2s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--vivid-pink);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  padding: 9px 0;
}
.cookie-toggle {
  width: 44px;
  height: 22px;
  background: #c7fce9;
  border-radius: 11px;
  position: relative;
  margin-left: auto;
  cursor: pointer;
  border: 1.5px solid var(--electric-blue);
  transition: background 0.14s, border 0.14s;
}
.cookie-toggle[aria-checked=true] {
  background: var(--neon-green);
  border: 2px solid var(--vivid-pink);
}
.cookie-toggle-indicator {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(33,36,60,0.07);
  transition: left 0.2s cubic-bezier(.31,.86,.66,1.1);
}
.cookie-toggle[aria-checked=true] .cookie-toggle-indicator {
  left: 22px;
  background: var(--vivid-pink);
}
.cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 18px;
}
.cookie-modal-buttons button {
  padding: 11px 22px;
  border-radius: 29px;
  border: none;
  background: var(--electric-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal-buttons button:hover {
  background: var(--neon-green);
  color: #21243c;
}

/* ----------- Mobile Navigation / Burger Menu -------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #21243c;
  border: none;
  border-radius: 9px;
  font-size: 2.2rem;
  padding: 4px 16px;
  margin-right: 15px;
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 120;
  transition: background 0.19s, color 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electric-blue);
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; height: 100vh;
  width: 88vw;
  max-width: 370px;
  background: #21243c;
  z-index: 3020;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.19,.94,.53,1.01);
  box-shadow: 6px 0 28px rgba(33,36,60,0.21);
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
  animation: menuSlideIn 0.41s cubic-bezier(.15,.92,.35,1.14);
}
@keyframes menuSlideIn {
  from { transform: translateX(-110%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 13px;
  right: 18px;
  color: #fff;
  background: none;
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  z-index: 3201;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vivid-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vivid-pink);
  color: #fff;
}

/* Overlay when mobile menu is open */
.mobile-menu-overlay {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(28,25,45,0.46);
  z-index: 3010;
  pointer-events: auto;
  opacity: 1;
  animation: overlayFadeIn 0.31s cubic-bezier(.19,.87,.37,1.06);
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --------- Typography: Vibrant/Energetic ------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

body, p, li, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  color: #21243c;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.19;
  margin-top: 5px;
  color: var(--vivid-pink);
  text-shadow: 0 3px 14px rgba(233,29,126,0.08);
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  color: var(--electric-blue);
  letter-spacing: 0.01em;
  margin-top: 12px;
}
h3, h4 {
  font-size: 1.22rem;
  color: var(--secondary);
  margin-top: 5px;
  margin-bottom: 4px;
  font-weight: 800;
}

/* ---------- Microinteractions & Subtle FX ----------- */
a, button { transition: color 0.19s, background 0.18s, transform 0.13s; }
a:active, button:active { transform: scale(0.98); }

/* ------------- Utility ------------- */
.hide-on-mobile { display: block; }
.only-on-mobile { display: none; }

/* ---------- Responsive (mobile-first) -------------- */
@media (max-width: 1024px) {
  .container { max-width: 90vw; }
  .main-navigation { max-width: 100vw; padding: 18px 8px; }
}

@media (max-width: 768px) {
  .main-navigation { display: none; }
  .mobile-menu-toggle { display: block; }
  .section {
    margin-bottom: 44px;
    padding: 26px 4vw;
    border-radius: 12px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px 12px;
    font-size: 1rem;
  }
  .container {
    padding: 0 5vw;
    max-width: 100vw;
  }
  .content-wrapper {
    gap: 15px;
  }
  .footer-nav { gap: 12px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3, h4 { font-size: 1.08rem; }
}

@media (max-width: 540px) {
  .section { margin-bottom: 30px; padding: 17px 2px; }
  .container { padding: 0 6px; }
  .card, .testimonial-card { min-width: 0; padding: 16px 6px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ------- Vibrant Design Details/Decorative ---------- */
hr {
  border: 0;
  border-top: 3px solid var(--electric-blue);
  border-radius: 2px;
  margin: 34px 0;
}
dt { font-weight: bold; color: #e81a7c; }
dd { margin-left: 0; margin-bottom: 8px; color: #21243c; opacity: 0.87; }

/* -------------- Spacing (base 8px, then 16/24/32/40/60) -------------- */
.section + .section { margin-top: 0; }
.card + .card { margin-top: 0; }
.testimonial-card + .testimonial-card { margin-top: 0; }

/* ---------------- Custom Scrollbar energy ----------------- */
::-webkit-scrollbar { width: 8px; background: #f4f4f4; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--electric-blue) 55%, var(--vivid-pink) 100%);
  border-radius: 4px;
}

@media (pointer: coarse) {
  .cta-btn,
  button,
  .mobile-nav a { touch-action: manipulation; }
}
