/* ===== CSS RESET & BASE ===== */
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: disc inside;
}
html {
  scroll-behavior: smooth;
  background: #FBFAFE;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FBFAFE;
  color: #223F4B;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== BRAND COLORS & VARIABLES (w/ fallback) ===== */
:root {
  --primary: #223F4B;
  --secondary: #44A1A0;
  --accent: #E2F1EF;
  --bg: #FBFAFE;
  --pastel-blue: #DCEBFB;
  --pastel-pink: #F8E2F4;
  --pastel-mint: #EAFBF6;
  --pastel-yellow: #FDF6E7;
  --white: #fff;
  --shadow: 0 4px 32px 0 rgba(68,161,160,0.12), 0 1.5px 6px 0 rgba(32,40,71,0.07);
  --radius: 18px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}
h4,h5,h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, span {
  font-size: 1rem;
  color: var(--primary);
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: var(--secondary);
}
.button-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #E2F1EF 0%, #F8E2F4 50%, #DCEBFB 100%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 13px 38px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px 0 rgba(68,161,160,0.12);
  cursor: pointer;
  transition: background 0.28s, box-shadow 0.2s, color 0.2s;
  margin: 12px 0;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #F8E2F4 0%, #E2F1EF 100%);
  color: var(--secondary);
  box-shadow: 0 4px 32px 0 rgba(68,161,160,0.18);
  outline: none;
}
/* Secondary (if needed) */
.button-secondary {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: var(--accent);
}

/* ===== CONTAINER & WRAPPER ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin-bottom: 0;
  background: none;
}

/* ===== LAYOUT CLASSES FROM SPEC ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
}
.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: var(--pastel-mint);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(68,161,160,0.1);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 250px;
  max-width: 520px;
  color: #223F4B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 18px 20px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(68,161,160,0.22);
  transform: translateY(-3px) scale(1.014);
}
.service-card img {
  width: 44px;
  margin-bottom: 10px;
}
.service-card span {
  font-size: 1.02rem;
  color: var(--secondary);
  font-weight: 500;
  margin-top: 8px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-list-item {
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 16px 16px 16px;
  min-width: 200px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.membership-card, .pricing-card {
  background: var(--pastel-yellow);
  padding: 18px 18px 18px 22px;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 6px 0 rgba(32,40,71,0.07);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 390px;
}

.confirmation-section {
  background: var(--pastel-pink);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(68,161,160,0.09);
  padding: 28px 16px;
  margin-bottom: 20px;
  text-align: center;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--pastel-blue);
  box-shadow: 0 2px 12px 0 rgba(68,161,160,0.07);
  position: relative;
  z-index: 10;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 18px 0;
  width: 100%;
  gap: 18px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  padding: 7px 12px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--primary);
  background: transparent;
  transition: background 0.16s, color 0.14s;
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  background: var(--accent);
  color: var(--secondary);
}
.main-nav .button-primary {
  margin-left: 6px;
}
.header-content img {
  height: 42px;
  max-height: 7vw;
  margin-right: 16px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  padding: 6px 14px;
  cursor: pointer;
  color: var(--primary);
  border-radius: 10px;
  transition: background 0.14s;
  display: none;
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 50px rgba(68,161,160,0.1);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.62,0.16,0.45,1), opacity 0.36s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 30px 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  margin: 16px 25px 16px 0;
  cursor: pointer;
  z-index: 10000;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 22px;
  align-items: flex-end;
  padding: 0 32px 0 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary);
  background: transparent;
  padding: 8px 14px;
  border-radius: 11px;
  transition: background 0.14s, color 0.16s;
  min-width: 170px;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.mobile-nav .button-primary {
  min-width: 185px;
  margin-top: 12px;
  font-size: 1.08rem;
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .header-content img {
    height: 36px;
    margin-right: 8px;
  }
}
@media (max-width: 820px) {
  .service-cards, .card-container, .service-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .section {
    padding: 30px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .container {
    padding: 0 6px;
  }
  .service-card, .service-list-item, .testimonial-card, .membership-card, .pricing-card, .confirmation-section {
    padding: 16px 7px;
    font-size: 1rem;
    min-width: unset;
    max-width: 95vw;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  width: 100vw;
  background: linear-gradient(120deg, #E2F1EF 60%, #F8E2F4 100%);
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 40px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 22px rgba(68,161,160,0.08);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  min-height: 240px;
  text-align: left;
}
.hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.1px;
  margin-bottom: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  border-left: 7px solid var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #223F4B;
  background: var(--pastel-mint);
  box-shadow: 0 2px 10px 0 rgba(68,161,160,0.11);
  margin-bottom: 20px;
  font-size: 1.07rem;
}
.testimonial-card p {
  margin-bottom: 8px;
  font-style: italic;
  color: var(--primary);
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--secondary);
  font-weight: 500;
}
.star-rating {
  color: #FFD600;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-weight: bold;
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(34,63,75,0.08);
  padding: 18px 15px;
  margin: 24px 0 0 0;
  max-width: 430px;
  font-size: 1.08rem;
  color: var(--primary);
}
.contact-details a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: var(--primary);
}

/* ===== FOOTER ===== */
footer {
  background: #F8E2F4;
  box-shadow: 0 -2px 18px 0 rgba(68,161,160,0.08);
  padding: 38px 0 22px 0;
  margin-top: 45px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-wrapper nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 150px;
}
.footer-wrapper nav a {
  color: var(--primary);
  font-size: 0.99rem;
  border-radius: 7px;
  padding: 6px 7px 6px 2px;
  transition: background 0.11s, color 0.15s;
}
.footer-wrapper nav a:hover, .footer-wrapper nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.social-links a img {
  width: 27px;
  height: 27px;
  filter: grayscale(0.15) brightness(0.99) contrast(1.12);
  opacity: 0.75;
  transition: opacity 0.13s, transform 0.16s;
}
.social-links a:hover img,
.social-links a:focus img {
  opacity: 1;
  transform: scale(1.11);
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #E2F1EF 70%, #F8E2F4 100%);
  color: #223F4B;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 32px 0 rgba(34,63,75,0.13);
  z-index: 21000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 18px 18px 26px;
  width: 94vw;
  max-width: 600px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s, transform 0.38s cubic-bezier(.65,0,.25,1);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cookie-banner strong {
  color: var(--secondary);
  font-weight: 700;
  margin-right: 7px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 7px;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary {
  padding: 9px 28px;
  font-size: 0.98rem;
  min-width: 120px;
}
.cookie-banner .button-secondary {
  background: var(--primary);
  color: #fff;
}
.cookie-settings-btn {
  background: none;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  padding: 9px 19px;
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    max-width: 95vw;
    padding: 17px 4px 14px 10px;
    font-size: 0.98rem;
    border-radius: 16px 16px 0 0;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30000;
  background: rgba(34,63,75,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  box-shadow: 0 4px 32px 0 rgba(34,63,75,0.17);
  border-radius: var(--radius);
  padding: 32px 26px 18px 36px;
  max-width: 420px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.37s cubic-bezier(.48,.63,.72,1);
  position: relative;
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: translateY(50px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--primary);
}
.cookie-modal h2 {
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E2F1EF;
}
.cookie-category:last-child {
  border: none;
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 11px;
  background: #E2F1EF;
  border: 1px solid #44A1A0;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
}
.cookie-toggle[aria-checked="true"] {
  background: #44A1A0;
}
.cookie-toggle .toggle-knob {
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 1px;
  transition: left 0.19s;
}
.cookie-toggle[aria-checked="true"] .toggle-knob {
  left: 19px;
  background: #F8E2F4;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 14px;
}

/* ===== LISTS & DETAILS ===== */
ul, ol {
  margin-bottom: 18px;
  padding-left: 22px;
  line-height: 1.6;
}
ul li, ol li {
  margin-bottom: 7px;
  color: var(--primary);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 1.01rem;
  color: var(--secondary);
}

/* ===== SEPARATORS ===== */
hr {
  border: none;
  height: 2px;
  background: var(--accent);
  margin: 36px 0 24px 0;
  border-radius: 5px;
}

/* ===== ANIMATIONS / MICRO-INTERACTIONS ===== */
.button-primary, .button-secondary, .service-card, .service-list-item, .testimonial-card, .cookie-banner, .cookie-settings-btn {
  transition: box-shadow 0.18s, background 0.2s, color 0.16s, transform 0.16s;
}
button:active, .button-primary:active, .button-secondary:active {
  transform: scale(0.98);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hide { display: none !important; }

/* ===== ACCESSIBILITY FOCUS STATES ===== */
a:focus, button:focus, .button-primary:focus, .cookie-settings-btn:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
  background: var(--accent);
}

/* ===== SCROLLBAR (soft) ===== */
::-webkit-scrollbar {
  width: 10px;
  background: #F8E2F4;
  border-radius: 16px;
}
::-webkit-scrollbar-thumb {
  background: #E2F1EF;
  border-radius: 16px;
}

/* ===== DREAMY PASTEL SECTION BGs ===== */
.section:nth-child(even) {
  background: linear-gradient(92deg, #FBFAFE 70%, #DCEBFB 100%);
  border-radius: 20px;
}
.section:nth-child(odd) {
  background: linear-gradient(80deg, #FBFAFE 70%, #F8E2F4 100%);
  border-radius: 20px;
}

/* ===== FINAL TOUCHES ===== */
::-webkit-input-placeholder { color: #84a0ab; }
::-moz-placeholder { color: #84a0ab; }
:-ms-input-placeholder { color: #84a0ab; }
::placeholder { color: #84a0ab; }

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