/* CSS RESET & NORMALIZATION */
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-size: 100%;
 font: inherit;
 vertical-align: baseline;
 box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.45;
  background: #F8FAFF;
  color: #392B39;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1C3552;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7069D8;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}

/* BRANDING SOFT PASTEL COLORS (with gentle accents) */
:root {
  --brand-primary: #1C3552;
  --brand-secondary: #EFD065;
  --brand-accent: #FFFFFF;
  --pastel-blue: #daebf4;
  --pastel-pink: #f5d0e6;
  --pastel-yellow: #fcf2d6;
  --pastel-green: #e3f6eb;
  --pastel-purple: #e5defc;
  --pastel-mauve: #efe7fa;
  --text-main: #392B39;
  --text-light: #6F6977;
  --border-pastel: #eaecef;
  --shadow-main: 0 4px 24px 0 rgba(42,40,62,0.08);
  --shadow-card: 0 2px 12px 0 rgba(80, 89, 140, 0.11);
  --radius-main: 18px;
  --radius-btn: 25px;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
  letter-spacing: 0.015em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
  letter-spacing: 0.0125em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
strong {
  color: var(--brand-primary);
  font-weight: 600;
}
blockquote {
  font-style: italic;
  font-size: 1.08rem;
  background: var(--pastel-mauve);
  color: var(--text-main);
  border-left: 5px solid var(--pastel-purple);
  padding: 14px 22px;
  border-radius: var(--radius-main);
  margin-bottom: 7px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 2px 10px rgba(74, 62, 71, 0.05);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 8px 14px;
  border-radius: 22px;
  background: transparent;
  transition: background 0.19s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-yellow);
  color: #84518B;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, var(--pastel-yellow) 30%, var(--pastel-pink) 100%);
  color: var(--brand-primary);
  font-weight: 600;
  padding: 10px 34px;
  border: none;
  border-radius: var(--radius-btn);
  box-shadow: 0 1px 8px rgba(223, 206, 255, 0.10);
  font-size: 1.1rem;
  letter-spacing: 0.028em;
  outline: none;
  cursor: pointer;
  margin-left: 18px;
  text-align: center;
  transition: background 0.21s, box-shadow 0.21s, color 0.15s, transform 0.09s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--pastel-pink) 30%, var(--pastel-purple) 100%);
  color: #8751A8;
  box-shadow: 0 6px 18px 0 rgba(154, 72, 172, 0.13);
  transform: translateY(-2px) scale(1.025);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  background: var(--pastel-yellow);
  border: none;
  color: var(--brand-primary);
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.16s, color 0.18s, box-shadow 0.16s;
  box-shadow: 0 1px 7px 0 rgba(255, 193, 218, 0.09);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover {
  background: var(--pastel-pink);
  color: #ba7ab1;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 228, 253, 0.98);
  backdrop-filter: blur(2px);
  box-shadow: 0 6px 24px 0 rgba(214, 190, 253, 0.13);
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(0.79,0.02,0.32,1.0);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 0 0 46px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 25px;
  background: var(--pastel-purple);
  border: none;
  border-radius: 18px;
  font-size: 2rem;
  color: #8727A9;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 151;
  transition: background 0.17s, color 0.14s;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-pink);
  color: #bb589d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 38px 22px 38px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #75507D;
  padding: 10px 14px;
  border-radius: 16px;
  background: none;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-yellow);
  color: #84548D;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
  .cta-button {
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* LAYOUT COMPONENTS (Flexbox only) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-grid, .card-container, .content-grid, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid > div {
  background: var(--pastel-blue);
  border-radius: var(--radius-main);
  padding: 24px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  transition: box-shadow 0.23s;
}
.features-grid > div:hover {
  box-shadow: 0 10px 36px 0 rgba(174, 172, 236, 0.16);
  transform: translateY(-4px) scale(1.03);
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  min-width: 250px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 10px 36px 0 rgba(180, 174, 250, 0.09);
  transform: translateY(-2px) scale(1.012);
}
.content-grid {
  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-purple);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 10px rgba(146, 114, 206, 0.06);
  margin-bottom: 20px;
  color: var(--text-main);
}
.testimonial-card blockquote {
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  color: var(--text-main);
  font-size: 1.10rem;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  min-height: 310px;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-mauve) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 36px 0;
  margin-bottom: 32px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.7rem;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px #f3e3fc44;
}
.hero p {
  color: #6A5481;
  font-size: 1.13rem;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* FOOTER */
footer {
  background: linear-gradient(0deg, var(--pastel-purple) 80%, var(--brand-accent) 100%);
  border-top: 1px solid #eceffa;
  margin-top: 80px;
  font-size: 0.98rem;
  color: var(--text-main);
  padding: 30px 0 16px 0;
  letter-spacing: 0.005em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 55px;
  align-items: flex-start;
  justify-content: flex-start;
}
footer img {
  height: 44px;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #482B6F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  padding: 4px 0;
  transition: color 0.19s;
}
.footer-nav a:hover {
  color: #865BA0;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #64447B;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: sub;
  margin-bottom: 0;
  display: inline-block;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  margin-bottom: 6px;
}

/* FORMS & BUTTONS */
button, input[type='submit'], .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}
button:focus, .cta-button:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* SPECIAL COMPONENTS */
.text-section {
  background: var(--pastel-blue);
  border-radius: var(--radius-main);
  padding: 16px 22px;
  margin-bottom: 18px;
  color: var(--text-main);
  font-size: 1.01rem;
}
.text-section h3 {
  margin: 0 0 4px 0;
  font-size: 1.11rem;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pastel-mauve);
  color: var(--text-main);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 16px;
  box-shadow: 0 -4px 16px 0 rgba(103,78,167,0.09);
  z-index: 9999;
  font-size: 1rem;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  animation: cookie-slide-in 0.5s cubic-bezier(0.6,0,0,1.02);
}
@keyframes cookie-slide-in {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner button {
  background: var(--pastel-blue);
  color: var(--brand-primary);
  border-radius: var(--radius-btn);
  border: none;
  margin-left: 13px;
  padding: 8px 22px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.14s;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(80, 60, 113, 0.07);
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: var(--pastel-pink);
  color: #9658b6;
}
.cookie-consent-banner .accept {
  background: var(--pastel-green);
}
.cookie-consent-banner .accept:hover {
  background: var(--pastel-yellow);
  color: #a78545;
}
.cookie-consent-banner .reject {
  background: var(--pastel-pink);
}
.cookie-consent-banner .reject:hover {
  background: var(--pastel-blue);
  color: #2656A0;
}
.cookie-consent-banner .settings {
  background: var(--pastel-purple);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(70,62,105,0.18);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--brand-accent);
  border-radius: var(--radius-main);
  padding: 34px 28px 28px;
  width: 95%;
  max-width: 390px;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: cookie-modal-popup 0.35s cubic-bezier(0.6,0,0,1.02);
  position: relative;
}
@keyframes cookie-modal-popup {
  from { transform: translateY(40px) scale(0.95); opacity:0 }
  to   { transform: translateY(0) scale(1); opacity:1 }
}
.cookie-modal-content h3 {
  margin-bottom: 12px;
  color: var(--brand-primary);
  font-size: 1.14rem;
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal-content input[type='checkbox'] {
  width: 18px; height: 18px;
  accent-color: var(--brand-secondary);
}
.cookie-modal-content .cookie-category label {
  font-size: 1rem;
  color: #81579a;
}
.cookie-modal-content .essential {
  color: #2656A0;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.9rem;
  color: #a893c7;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-content .close-modal:hover {
  color: #e686af;
}
.cookie-modal-content button {
  padding: 8px 19px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  margin-left: 6px;
}

/* LISTS & LINKS IN CONTENT */
.content-wrapper ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.content-wrapper ul li {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 1rem;
}
.content-wrapper ul li strong {
  color: var(--brand-primary);
  font-weight: 600;
}

.content-wrapper a {
  color: #8751A8;
  transition: color 0.18s;
}
.content-wrapper a:hover {
  color: #1C3552;
}

/* MISCELLANEOUS / DECORATIVE */
@media (max-width: 940px) {
  .footer-contact, .footer-nav, footer .container {
    flex-direction: column !important;
    gap: 20px 0;
    align-items: flex-start !important;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 8px; padding-right: 8px;
  }
  .hero {
    padding: 44px 0 16px;
    min-height: 176px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .content-wrapper {
    gap: 12px;
  }
  .features-grid {
    gap: 14px;
    flex-direction: column;
  }
  .features-grid > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 14px 12px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 5px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 15px 10px;
    font-size: 0.99rem;
  }
  .content-grid, .footer-contact {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 630px) {
  .footer-contact div {
    font-size: 0.95rem;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
  }
}
@media (max-width: 420px) {
  h1, .h1 { font-size: 1.49rem; }
  h2, .h2 { font-size: 1.13rem; }
  .cta-button, .main-nav a, .mobile-nav a {
    font-size: 0.94rem;
  }
}

/* FOCUS & ACCESSIBILITY */
*:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* ANIMATIONS INTERACTIONS */
.card, .features-grid > div, .testimonial-card, .cta-button, .cookie-consent-banner, .cookie-modal-content, .mobile-menu {
  transition: box-shadow 0.20s, transform 0.13s, background 0.17s, color 0.17s;
}

/* Hide visually but accessible - utility */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* END */
