/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2D2A4A;
  background: #FAFAFC;
  min-height: 100vh;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
/* SOFT PASTEL COLOR PALETTE */
:root {
  --primary: #2D2A4A;
  --secondary: #5FCFB5;
  --accent: #F5F7FB;
  --pastel-a: #E6F6F1; /* light mint */
  --pastel-b: #FDE8F0; /* blush pink */
  --pastel-c: #EAF0FB; /* baby blue */
  --pastel-d: #FFF8EA; /* vanilla */
  --card-bg: #ffffffcc;
  --cta-bg: #AADAE6; /* pastel blue-green */
  --shadow: 0 4px 24px 0 rgba(110,135,165, 0.10);
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, li {
  font-size: 1rem;
  color: #3C3961;
}
strong {
  font-weight: bold;
}
.text-section ul,
.text-section ul li,
.text-section p {
  margin-bottom: 8px;
  color: #3C3961;
}
.text-section h3 {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #5FCFB5;
}
/* CONTAINER LAYOUTS */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(110,135,165, 0.18);
  transform: translateY(-3px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--pastel-c);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(168, 180, 200,0.07);
  min-width: 240px;
  max-width: 540px;
}
.testimonial-card p {
  color: #27254A;
  font-size: 1.05rem;
}
.testimonial-client {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 16px;
  background: none;
}
ul li, .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* BUTTONS & CALL TO ACTIONS */
.cta-button {
  padding: 13px 38px;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.17rem;
  border-radius: 40px;
  box-shadow: 0 2px 20px 0 rgba(100,190,165, 0.14);
  font-weight: bold;
  border: none;
  margin: 12px 0 0 0;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.18s, box-shadow 0.16s;
  letter-spacing: 0.5px;
}
.cta-button:hover, .cta-button:active, .cta-button:focus {
  background: #46c09e;
  box-shadow: 0 4px 24px 0 rgba(100,175,150,0.2);
  transform: translateY(-1px) scale(1.03);
}
button, .cookie-banner button {
  cursor: pointer;
}

/* HEADER & NAV STYLES */
header {
  background: linear-gradient(90deg, #FDE8F0 0%, #EAF0FB 67%, #FFF8EA 100%);
  box-shadow: 0 2px 18px 0 rgba(110,130,160, 0.04);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  z-index: 100;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: #545078;
  padding: 8px 18px;
  border-radius: 23px;
  opacity: 0.92;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.16s;
}
header nav a:hover, header nav a.active {
  background: var(--pastel-b);
  color: var(--primary);
  opacity: 1;
}
header img {
  width: 38px;
  height: 38px;
  margin-right: 17px;
}
header .cta-button {
  margin-left: 35px;
  font-size: 1rem;
}
/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.4rem;
  color: var(--primary);
  margin-left: 18px;
  z-index: 201;
  border-radius: 10px;
  transition: background 0.16s;
  height: 45px;
  width: 45px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-b);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 220;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(.9,.1,.5,1);
  box-shadow: -8px 0 26px -6px rgba(45,38,70,0.04);
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.15rem;
  color: var(--primary);
  background: var(--pastel-b);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 230;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFDDEB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 60px 0 0 0;
  padding: 0 30px;
}
.mobile-nav a {
  font-size: 1.23rem;
  font-family: 'Montserrat';
  color: var(--primary);
  font-weight: 500;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid #f4f2fa;
  border-radius: 0;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--secondary);
  background: var(--pastel-c);
}
/* HIDE DESKTOP NAV AND CTA ON MOBILE */
@media (max-width: 992px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* SERVICE & OFFER CARDS */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg, #E6F6F1 50%, #EAF0FB 100%);
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(135,160,230,0.08);
  padding: 28px 25px 22px 25px;
  min-width: 220px;
  max-width: 345px;
  flex: 1 0 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.19s;
}
.service-card h3 {
  margin-bottom: 9px;
}
.service-price {
  margin-top: 12px;
  background: var(--pastel-d);
  color: #69B494;
  font-weight: bold;
  border-radius: 10px;
  padding: 4px 14px;
  margin-bottom: 0;
  font-size: 1.05rem;
  box-shadow: 0 1px 6px 0 rgba(185,200,230,0.07);
}
.service-card img {
  width: 39px;
  height: 39px;
  margin-bottom: 14px;
}

/* HERO AND MAIN SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
  position: relative;
  min-width: 0;
}
section:first-of-type {
  background: linear-gradient(90deg, #E6F6F1 10%, #FDE8F0 90%);
  border-bottom: 1px solid #EFECF4;
  box-shadow: 0 30px 36px -31px rgba(103,136,202,0.06);
  padding-top: 50px;
  margin-bottom: 54px;
}

/* FOOTER */
footer {
  background: #F5F7FB;
  border-top: 1px solid #F0F1F7;
  padding: 35px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
  margin-top: 35px;
}
footer nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 28px;
}
footer nav a {
  color: #6B697E;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 2px 15px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover {
  background: var(--pastel-d);
  color: var(--primary);
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #8684A3;
}
.footer-brand img {
  height: 24px;
  width: 24px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #FBF4FC;
  box-shadow: 0 -2px 12px 0 rgba(200,170,220,0.07);
  padding: 28px 18px 24px 18px;
  z-index: 4999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.26s, opacity 0.22s;
  font-size: 1.02rem;
}
.cookie-banner[aria-hidden="true"] {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  padding: 9px 22px;
  box-shadow: 0 2px 12px 0 rgba(100,200,175,0.09);
  border: none;
  transition: background 0.16s, transform 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #46c09e;
  transform: scale(1.04);
}
.cookie-banner button.cookie-settings {
  background: var(--pastel-c);
  color: var(--primary);
  border: 1px solid #c8eaf3;
}
.cookie-banner button.cookie-settings:hover {
  background: #ccf7f4;
}
.cookie-modal-overlay {
  position: fixed;
  z-index: 5002;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(84,73,130, 0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal-overlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 42px 0 rgba(120,98,175,.12);
  width: 95%;
  max-width: 420px;
  padding: 38px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeIn 0.29s cubic-bezier(0.8,.2,0.6,1);
}
.cookie-modal__close {
  position: absolute;
  top: 17px;
  right: 22px;
  background: var(--pastel-b);
  border: none;
  border-radius: 8px;
  width: 32px; height: 32px;
  font-size: 1.25rem;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.13s;
}
.cookie-modal__close:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--pastel-a);
  border-radius: 12px;
  padding: 11px 12px 11px 18px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 41px; height: 23px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #a5e8dc;
  position: relative;
  display: inline-block;
  transition: box-shadow 0.13s;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-toggle .toggle-circle {
  width: 19px; height: 19px;
  background: #DEE6FD;
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 2px;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle[aria-checked="true"] .toggle-circle {
  left: 19px;
  background: #fff;
}
.cookie-category[aria-disabled="true"] {
  opacity: 0.58;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* MICRO-INTERACTIONS */
.card, .service-card, .testimonial-card, .cta-button, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s cubic-bezier(.74,.2,.86,.63),
              background 0.21s, transform 0.18s;
}

/* UTILITIES */
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-40 { margin-top: 40px; }
.rounded-20 { border-radius: 20px; }
.text-center { text-align: center; }

/* RESPONSIVE STYLES: MOBILE-FIRST */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  section {
    padding: 24px 0 0 0;
    margin-bottom: 38px;
  }
  .service-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .service-card, .card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .content-wrapper {
    padding: 0;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer nav {
    flex-direction: column;
    gap: 9px;
  }
  .mobile-menu {
    padding-top: 10px;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.21rem; }
}
/* ACCESSIBLE FOCUS */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #AEE9DF;
  outline-offset: 2px;
}

/* SOFT GRADIENT BORDERS + BACKGROUNDS */
.section, .content-wrapper, .text-section {
  border-radius: 18px;
  background: none;
}
section:not(:first-of-type) .content-wrapper {
  background: linear-gradient(90deg,#fff 70%,#FDE8F0 100%);
  border-radius: 22px;
  box-shadow: 0 3px 18px 0 rgba(220, 212, 252, 0.06);
  padding: 28px 18px 24px 24px;
}
@media (max-width: 768px) {
  section:not(:first-of-type) .content-wrapper {
    padding: 17px 6px 12px 9px;
  }
}

/* ICON STYLE */
ul li img, .feature-item img {
  width: 26px;
  height: 26px;
  margin-right: 7px;
  display: inline-block;
  opacity: 0.79;
}

/* ALIGNMENTS */
.content-wrapper, .text-section, .feature-item, .service-card, .card {
  align-items: flex-start;
}
.testimonial-card, .cta-button, .mobile-menu{
  align-items: center;
}

/* VISUAL HIERARCHY AND WHITE SPACE */
section, .content-wrapper, .card, .service-card, .testimonial-card, .cookie-modal {
  margin-bottom: 20px;
  box-sizing: border-box;
}
section:last-child, .content-wrapper:last-child {
  margin-bottom: 0;
}

/* SCROLL BOUNCE (MOBILE FEEL) */
body {
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
}

/* Z-INDICES */
header { z-index: 100;}
.mobile-menu { z-index: 220; }
.cookie-banner { z-index: 4999; }
.cookie-modal-overlay { z-index: 5002; }

/* END OF CSS */
