/* --- CSS RESET & NORMALIZE --- */
* { box-sizing: border-box; padding: 0; margin: 0; }
html, body {
  height: 100%;
}
body {
  min-height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #173046;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; border: 0; }
a { text-decoration: none; color: #1FB8A8; transition: color 0.2s; }

/* --- BRAND COLORS FOR PLAYFUL DYNAMIC ENERGY --- */
:root {
  --color-primary: #173046;
  --color-secondary: #1FB8A8;
  --color-accent: #FAFAFA;
  --color-fun1: #FFB627;
  --color-fun2: #FF5F5A;
  --color-fun3: #A259FF;
  --color-fun4: #40C465;
  --color-shadow: rgba(31, 184, 168, 0.12);
  --color-dark: #173046;
  --color-light: #FAFAFA;
  --color-warning: #FFD506;
}

/* --- TYPOGRAPHY for Playful Dynamic --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: 0.015em;
  font-weight: bold;
}
h1 { font-size: 2.8rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.08rem; }

p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b {
  color: var(--color-fun2); font-weight: bold; font-family: 'Montserrat', sans-serif;
}

/* --- CONTAINER & BASE LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: none;
}
.text-section { margin-bottom: 16px; }

/* --- FLEX LAYOUT CLASSES --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 28px;
  box-shadow: 0 6px 40px var(--color-shadow);
  transition: box-shadow 0.25s;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(160,89,255, 0.10);
  transition: box-shadow .22s, transform .22s;
  position: relative;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(255,95,90,.22), 0 2px 18px 0 rgba(31,184,168,.16);
  transform: translateY(-4px) 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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 14px 0 rgba(23,48,70, .10);
  font-size: 1.1rem;
  transition: box-shadow .2s, transform .22s;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-secondary);
}
.testimonial-card:hover {
  box-shadow: 0 3px 18px rgba(255,182,39,.15);
  transform: translateY(-2px) scale(1.01);
}
.feature-item, .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 18px 20px 16px 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(31,184,168,.08);
  transition: box-shadow .2s, background .22s;
}
.feature-item:hover, .benefit-item:hover {
  background: var(--color-fun1);
  box-shadow: 0 4px 18px rgba(255,182,39,.16);
}
.feature-item img, .benefit-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 8px;
}

/***** HEADER & MAIN NAVIGATION *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(23,48,70,.07);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-dark);
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 16px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-fun3);
  color: #fff;
}
header img {
  height: 52px;
  margin-right: 12px;
  transition: transform .18s;
}

/***** BUTTONS *****/
.button, .button.primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 2px 10px rgba(31,184,168,.13);
  transition: background .18s, color .18s, box-shadow .19s, transform .22s;
  cursor: pointer;
  display: inline-block;
}
.button.primary:hover, 
.button.primary:focus {
  background: var(--color-fun2);
  color: #fff;
  box-shadow: 0 4px 22px rgba(255,95,90,.18);
  transform: translateY(-3px) scale(1.05);
}
.button:active {
  background: var(--color-fun4);
}

/***** SECTION & CARD GRIDS FOR FLEX ONLY *****/
.feature-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  justify-content: space-between;
}
.feature-item, .benefit-item {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 330px;
}

/***** LISTS, FAQ, TEXT *****/
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 7px;
  line-height: 1.6;
}
ol {
  counter-reset: section;
}
ol li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
}
ol li::before {
  counter-increment: section;
  content: counter(section) '.';
  position: absolute;
  left: 0;
  color: var(--color-fun1);
  font-weight: bold;
}
/***** FAQ Section *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(255,182,39,.10);
  padding: 18px 22px 18px 28px;
  transition: box-shadow .2s, border .24s;
  border-left: 5px solid var(--color-secondary);
}

.faq-item h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-fun3);
  margin-bottom: 8px;
}
.faq-item:hover {
  box-shadow: 0 4px 20px 0 rgba(160,89,255,0.17);
  border-left: 5px solid var(--color-fun3);
}

/***** FOOTER *****/
footer {
  background: #1FB8A8;
  color: #fff;
  padding: 38px 0 24px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .19s;
  border-bottom: 2px solid rgba(255,255,255,0);
}
.footer-nav a:hover {
  color: var(--color-warning);
  border-bottom: 2px solid var(--color-warning);
}
.footer-contact,
.footer-hours {
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.88;
}
.footer-hours {
  font-style: italic;
}

/***** MOBILE NAVIGATION BURGER & MENU (HAMBURGER) *****/
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 26px;
  z-index: 100;
  display: none;
  background: var(--color-fun2);
  color: #fff;
  font-size: 2.4rem;
  border: none;
  border-radius: 16px;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(255,95,90,.14);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .2s, transform 0.19s;
}
.mobile-menu-toggle:hover {
  background: var(--color-fun1);
  color: var(--color-dark);
  transform: scale(1.09);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 42px 0 rgba(31,48,76,0.21);
  z-index: 9999;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .39s cubic-bezier(.95,.13,.28,.94), opacity .36s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  box-shadow: 0 0 80px 0 rgba(23,48,70,0.19);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: var(--color-fun2);
  color: #fff;
  font-size: 2.4rem;
  border: none;
  border-radius: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(255,95,90,0.13);
  cursor: pointer;
  z-index: 10001;
  transition: background .18s, color .18s, transform .23s;
}
.mobile-menu-close:hover {
  background: var(--color-fun3);
  color: #fff;
  transform: scale(1.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 140px 0 0 44px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.23rem;
  font-weight: 600;
  background: none;
  padding: 14px 0 8px 0;
  border-radius: 8px;
  width: 100%;
  text-align: left;
  box-shadow: none;
  transition: background .18s, color .18s, font-size .14s;
}
.mobile-nav a:hover {
  background: var(--color-fun1);
  color: var(--color-fun3);
  font-size: 1.28rem;
}

/***** COOKIE CONSENT BANNER (FIXED BOTTOM) *****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe6;
  color: var(--color-primary);
  box-shadow: 0 -4px 26px 0 rgba(255,182,39,.15);
  padding: 18px 24px 21px 24px;
  z-index: 42000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 0.99rem;
  transition: transform .33s, opacity .24s;
  border-top: 2px solid var(--color-fun1);
  animation: cookie-consent-pop 0.6s cubic-bezier(.79,.02,.18,1.29) 1;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
@keyframes cookie-consent-pop {
  0% { transform: translateY(110%); opacity: 0; }
  60% { transform: translateY(-24px) scale(1.12); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  flex: 1;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03rem;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 9px 22px;
  margin: 0 2px;
  cursor: pointer;
  transition: background .17s, color .15s, transform .18s;
}
.cookie-consent-banner .cookie-reject {
  background: var(--color-fun2);
  color: #fff;
}
.cookie-consent-banner .cookie-settings {
  background: var(--color-fun1);
  color: var(--color-dark);
}
.cookie-consent-banner button:hover {
  background: var(--color-fun3);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  z-index: 42500;
  width: 94vw;
  max-width: 420px;
  padding: 36px 28px 28px 28px;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 8px 38px 0 rgba(27,48,76,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .29s, transform .39s cubic-bezier(.79,.04,.18,1.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1.03);
}
.cookie-modal h2 {
  font-size: 1.36rem;
  color: var(--color-fun3);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  color: var(--color-dark);
  font-weight: 500;
}
.cookie-switch {
  display: inline-flex;
  width: 44px;
  height: 24px;
  background: #eee;
  border-radius: 20px;
  align-items: center;
  transition: background .18s;
  position: relative;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch .slider {
  width: 22px;
  height: 22px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 1px;
  transition: left .19s, background .19s;
}
.cookie-switch input:checked + .slider {
  left: 21px; background: var(--color-fun1);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  border: none;
  border-radius: 18px;
  padding: 9px 22px;
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  transition: background .17s, color .14s;
}
.cookie-modal-actions .cookie-cancel {
  background: var(--color-fun2);
}
.cookie-modal-actions button:hover {
  background: var(--color-fun3);
}
.cookie-modal .cookie-essential {
  color: var(--color-dark);
  font-size: 0.97rem;
  font-style: italic;
  opacity: 0.90;
}

/***** RESPONSIVE DESIGN - MOBILE FIRST *****/
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .feature-grid, .benefit-grid { gap: 18px; }
}
@media (max-width: 992px) {
  .container { max-width: 740px; }
  header img { height: 44px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding: 0 10px; }
  .section { padding: 28px 8px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  
  .feature-grid, .benefit-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .benefit-item { max-width: 100%; width: 100%; }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 8px;
  }
  header nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .content-wrapper { gap: 16px; }
  .testimonial-card,
  .faq-item {
    padding: 13px 11px 14px 15px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 17px 10px 18px 10px;
    font-size: 0.91rem;
  }
  .footer-nav, .footer-contact { flex-direction: column; gap: 10px; }
  .footer-hours { padding: 5px 0 0 0; }
}
@media (max-width: 520px) {
  .section { padding: 11px 2px; margin-bottom: 24px; }
  .card, .testimonial-card, .faq-item {
    border-radius: 12px;
    font-size: 1rem;
  }
  .button, .button.primary {
    padding: 8px 14px;
    border-radius: 13px;
    font-size: .96rem;
  }
}

/***** ADDITIONAL MICRO-INTERACTIONS/ANIMATIONS *****/
.button, .button.primary, .cookie-consent-banner button, .cookie-modal-actions button {
  will-change: transform;
}
.feature-item, .benefit-item, .testimonial-card, .faq-item, .card {
  transition: box-shadow .15s, transform .13s, background .17s;
}
.feature-item:active, .benefit-item:active {
  transform: scale(0.97) rotate(-0.3deg);
}

/***** ACCESSIBILITY AND CONTRAST (TESTIMONIALS, BUTTONS) *****/
.testimonial-card, .faq-item {
  background: #fff;
  color: var(--color-primary);
}

/***** MISC CLASSES AND UTILITY CLASSES *****/
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.bg-fun1 { background: var(--color-fun1) !important; }
.bg-fun2 { background: var(--color-fun2) !important; }
.bg-fun3 { background: var(--color-fun3) !important; }
.bg-fun4 { background: var(--color-fun4) !important; }

/***** DECORATIVE (GENTLE WAVE) AT TOP OF MAIN SECTIONS (OPTIONAL) *****/
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 12px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background: repeating-linear-gradient(90deg,#FFB627 0px,#1FB8A8 44px,#A259FF 66px,#FF5F5A 88px);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

/***** ICONS IN LISTS *****/
li img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  vertical-align: middle;
}

/***** SUPPORT FOR STRONG VISUAL HIERARCHY *****/
.section > .container > .content-wrapper > h1,
.section > .container > .content-wrapper > h2 {
  background: linear-gradient(90deg, var(--color-fun1), var(--color-fun3), var(--color-secondary));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 #fff0;
}

/***** Z-INDEX LAYERS FOR MENU, COOKIE BAR, MODALS *****/
header { z-index: 40; }
.mobile-menu { z-index: 9999; }
.mobile-menu-toggle { z-index: 10000; }
.cookie-consent-banner { z-index: 42000; }
.cookie-modal { z-index: 42500; }

/***** MISC (REMOVE OUTLINE ON BUTTONS, ACCESSIBLE FOCUS ON LINKS ETC) *****/
button:focus, .button:focus, a:focus { outline: 3px solid var(--color-fun3); outline-offset: 3px; }


/* === END OF CSS === */
