/* --- CSS RESET & NORMALIZE v1 for soft_pastel style --- */
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,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #FAFBFF;
  color: #39485C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #194F7C;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(.49,1.65,.51,-0.36); /* pastel touch */
}
a:focus, a:hover {
  color: #f286c3;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
li {
  padding-bottom: 6px;
}
img {
  max-width: 100%;
  display: block;
}

/* --- PASTEL COLOR PALETTE for soft_pastel BREEZE CIRCUIT --- */
:root {
  --color-primary: #194F7C;
  --color-secondary: #F5AF0C;
  --color-accent: #FFFFFF;
  --color-softblue: #B1D7F9;
  --color-softpurple: #e7d7fb;
  --color-softpink: #fcd7ec;
  --color-softyellow: #FFF5C2;
  --color-softmint: #D4FFE1;
  --color-border: #e6e7ef;
  --color-shadow: rgba(80,110,160,0.08);
  --color-nav-bg: #f7fafd;
}



/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.18rem; }

p, li, ul, ol, details {
  font-family: 'Roboto', Arial, sans-serif;
  color: #39485C;
  font-size: 1rem;
  line-height: 1.8;
}
p {
  margin-bottom: 20px;
}
strong { font-weight: bold; }
em { font-style: italic; color: #a968a1; }
blockquote {
  font-style: italic;
  background: var(--color-softpurple);
  border-left: 5px solid #caa5ea;
  padding: 18px 28px;
  margin: 0 0 12px 0;
  color: #432671;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
details {
  margin-bottom: 18px;
}
details[open] summary {
  color: var(--color-secondary);
}
summary {
  cursor: pointer;
  font-weight: 500;
  padding: 6px 0;
  user-select: none;
  border-radius: 6px;
  transition: background 0.2s;
}
summary:focus,
summary:hover {
  background: var(--color-softmint);
}

/* --- GENERAL LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 28px;
  box-shadow: 0 4px 32px var(--color-shadow);
}

/* --- FLEXBOX PATTERNS (MANDATORY) --- */
.card-container, .features, .content-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 2px 20px var(--color-shadow);
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 32px #d4a2fc77;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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(--color-softpurple);
  border-radius: 16px;
  box-shadow: 0 2px 18px var(--color-shadow);
  margin-bottom: 20px;
  color: #23202d;
  flex-direction: row;
  min-width: 220px;
  max-width: 640px;
}
.testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #3a2f40;
  opacity: 0.8;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION (desktop + mobile) --- */
header {
  background: var(--color-nav-bg);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 16px 0;
}
nav > a > img {
  height: 48px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
}
nav li {
  display: flex;
  align-items: center;
}
nav a {
  display: flex;
  align-items: center;
  font-size: 1.06rem;
  padding: 8px 15px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: var(--color-softblue);
  color: #353466;
  outline: 0;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg,#fbc2eb 0,#a6c1ee 100%);
  background-color: var(--color-secondary);
  color: #194F7C;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  padding: 10px 28px;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 16px var(--color-shadow);
  cursor: pointer;
  outline: none;
  margin-left: 12px;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#b6e2ff 0,#fcd7ec 100%);
  color: #56357B;
  box-shadow: 0 8px 36px #b6a9f977;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #794dd5;
  cursor: pointer;
  padding: 8px 10px 0 10px;
  margin-left: 16px;
  border-radius: 12px;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-softpurple);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(251,233,255,0.95);
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.82,.41,.47,1.18);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 0 0 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #c365c5;
  cursor: pointer;
  padding: 16px 24px;
  align-self: flex-end;
  transition: background 0.16s;
  border-radius: 50%;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-softpink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 32px 36px;
  gap: 16px;
}
.mobile-nav a {
  display: block;
  color: #432671;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  padding: 12px 6px;
  border-radius: 12px;
  width: 100%;
  font-weight: 500;
  transition: background 0.17s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-softmint);
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  nav ul { gap: 6px; }
  nav a { font-size: 0.96rem; padding: 8px 8px; }
}
@media (max-width: 900px) {
  nav ul { display: none !important; }
  .cta-btn { display: none !important; }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* --- HERO & SECTION STYLES --- */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
section > .container > .content-wrapper {
  align-items: flex-start;
}
.content-wrapper h1, .content-wrapper h2 {
  margin-bottom: 8px;
}
.text-section {
  background: var(--color-softblue);
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-bottom: 16px;
}

/* --- FEATURED LISTS WITH ICONS --- */
.features ul, .content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.features li, .content-wrapper li, .content-wrapper ol li {
  display: flex;
  align-items: center;
  background: var(--color-softmint);
  color: #2c295e;
  padding: 12px 18px;
  border-radius: 13px;
  font-size: 1.06rem;
  box-shadow: 0 1px 6px var(--color-shadow);
  gap: 10px;
}
.features li img, .content-wrapper li img, .content-wrapper ol li img {
  height: 28px;
  width: 28px;
  margin-right: 12px;
  flex-shrink: 0;
}
.content-wrapper ol {
  list-style: decimal inside;
}
.content-wrapper ol li {
  background: var(--color-softyellow);
  color: #574014;
}

/* --- CARDS --- */
.card {
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  min-width: 220px; max-width: 100%;
  background: var(--color-accent);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: var(--color-softpurple);
  box-shadow: 0 2px 18px var(--color-shadow);
  border-radius: 16px;
  margin-bottom: 20px;
}
.testimonial-meta {
  color: #433363;
  font-size: 1.04rem;
  padding-left: 10px;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  margin-bottom: 0;
  font-style: italic;
  color: #32165a;
}

/* --- BUTTONS --- */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-softyellow);
  color: #78479f;
  border-radius: 18px;
  border: none;
  padding: 10px 24px;
  box-shadow: 0 2px 10px var(--color-shadow);
  cursor: pointer;
  margin: 0 6px 0 0;
  transition: background 0.12s, color 0.16s, box-shadow 0.14s;
  outline: none;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--color-softmint);
  color: #194F7C;
  box-shadow: 0 4px 22px #b79def39;
}

/* --- FOOTER --- */
footer {
  background: #f3f8fb;
  border-top: 1px solid var(--color-softblue);
  margin-top: 40px;
  padding: 36px 0 16px 0;
  box-sizing: border-box;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #7375b7;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 9px;
  transition: background 0.13s, color 0.18s;
}
.footer-nav a:hover { background: var(--color-softpurple); color: #946ef5; }
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
  color: #2b303e;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--color-softmint);
  padding: 7px 14px;
  border-radius: 11px;
  font-size: 1rem;
}
.footer-contact img {
  height: 23px;
  opacity: 0.6;
}
.footer-copy {
  color: #8391a1;
  text-align: center;
  font-size: 0.95rem;
}

/* --- RESPONSIVE DESIGN (MOBILE-FIRST) --- */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 13px;
  }
  section, .section {
    padding: 24px 0;
    margin-bottom: 38px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
  .card-container, .features, .content-grid, .card-grid {
    flex-direction: column !important;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  nav ul { display: none !important; }
  .cta-btn { display: none !important; }
  .mobile-menu-toggle {
    display: inline-block !important;
  }
  .footer-contact {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .footer-contact div {
    font-size: 0.96rem;
  }
}

@media (max-width: 400px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .footer-contact div {
    font-size: 0.86rem;
    padding: 5px 8px;
  }
  .mobile-nav {
    padding: 24px 10px;
  }
}

/* --- MICRO-INTERACTIONS & ANIMATIONS --- */
.card, .testimonial-card, .footer-contact div, button, .cta-btn {
  transition: box-shadow 0.15s, background 0.16s, color 0.14s, border 0.14s;
}
[tabindex]:focus, button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 2px #feb1d8;
  outline: none;
}
input:focus, textarea:focus {
  border-color: #a6c1ee;
  background: #e4faf7;
  outline: none;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff7fd;
  color: #544273;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  z-index: 2100;
  padding: 20px 24px;
  box-shadow: 0 -2px 24px #dabfec48;
  border-top-right-radius: 18px;
  border-top-left-radius: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  animation: fadeInUp 0.4s ease-in;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: none; }
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  border-radius: 12px;
  border: none;
  padding: 7px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: var(--color-softpurple);
  color: #6e38a9;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 9px var(--color-shadow);
}
.cookie-btn.accept {
  background: var(--color-softmint);
  color: #367378;
  font-weight: bold;
}
.cookie-btn.reject {
  background: var(--color-softpink);
  color: #bc315f;
}
.cookie-btn.settings {
  background: var(--color-softyellow);
  color: #9c8418;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 0 0 2px #e7d7fbe8;
  color: #432671;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(192, 142, 209, 0.16);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fffafd;
  border-radius: 22px;
  box-shadow: 0 2px 45px #c4a5eb61;
  padding: 36px 26px 24px 26px;
  min-width: 300px; max-width: 95vw;
  font-family: 'Roboto', Arial, sans-serif;
  color: #432671;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popIn 0.25s cubic-bezier(.49,1.65,.51,-0.36);
}
@keyframes popIn {
  0% { transform: scale(0.82); opacity: 0; }
  90% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: #8451b1;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-softblue);
  border-radius: 10px;
  padding: 8px 13px;
  margin-bottom: 8px;
  font-size: 1.03rem;
  color: #204063;
}
.cookie-category input[type="checkbox"] {
  accent-color: #b399ec;
  width: 19px;
  height: 19px;
  cursor: pointer;
}
.cookie-category .desc {
  color: #6e7190;
  font-size: 0.99rem;
}
.cookie-category.essential {
  background: var(--color-softmint);
  color: #297753;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #c365c5;
  cursor: pointer;
  border-radius: 50%;
  padding: 8px;
}
.cookie-modal-close:hover {
  background: var(--color-softpink);
}
@media (max-width: 640px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 6vw 18px 6vw;
  }
}

/* --- ACCESSIBILITY: Hide visually but keep accessible --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- UTILITY CLASSES --- */
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }

/* --- END OF STYLE.CSS --- */
