/* CSS RESET & NORMALIZE */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  color: #233048;
  background: #FCFDFD;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  background-color: #F6FAFC;
}
*::selection {
  background: #b5e0f9;
  color: #233048;
}
img, picture, video, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #2AAB6F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #349c9e;
  outline: none;
}

/* BRAND COLORS */
:root {
  --primary: #233048;
  --secondary: #2AAB6F;
  --accent: #F6FAFC;
  --pastel-pink: #FED6E3;
  --pastel-blue: #BFDBFE;
  --pastel-mint: #D5F8E6;
  --pastel-yellow: #FFF8DD;
  --pastel-lavender: #E8EAFE;
  --pastel-grey: #F5F5F7;
  --border: #ECF0F6;
  --shadow: rgba(64, 88, 155, 0.10);
  --danger: #E97979;
  --text-dark: #233048;
  --text-light: #65809E;
  --bg-gradient: linear-gradient(135deg, #F6FAFC 0%, #E8EAFE 100%);
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
p, li, span, strong, b {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
strong, b {
  font-weight: 600;
}

/* CONTAINERS AND LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 26px;
  background: var(--pastel-grey);
  box-shadow: 0 10px 32px var(--shadow);
  transition: box-shadow 0.25s;
}
.section:last-child {
  margin-bottom: 0;
}

/* HEADER & NAVIGATION */
header {
  background: var(--accent);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 0;
  width: 100%;
  z-index: 110;
  position: relative;
}
header .container {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-family: 'Open Sans', Arial, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  padding: 6px 13px;
  border-radius: 11px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
  outline: none;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 3px 12px var(--shadow);
  transition: background 0.18s, box-shadow 0.18s, transform 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #49c487;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px var(--shadow);
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  background: var(--secondary);
  color: #fff;
  width: 47px;
  height: 47px;
  border: none;
  border-radius: 50%;
  z-index: 1201;
  font-size: 2rem;
  box-shadow: 0 5px 16px var(--shadow);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.mobile-menu-toggle:active {
  background: #41a474;
  transform: scale(0.93);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #E8EAFE 0%, #F6FAFC 90%);
  box-shadow: 0 6px 24px var(--shadow);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  font-size: 2.2rem;
  position: absolute;
  top: 25px;
  right: 32px;
  border: none;
  cursor: pointer;
  z-index: 1350;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
  outline: none;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 32px 0 0 35px;
}
.mobile-nav a {
  font-size: 1.28rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  padding: 9px 22px;
  border-radius: 16px;
  font-weight: 500;
  width: 100%;
  display: block;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-pink);
  color: var(--secondary);
  outline: none;
}

/* MAIN CONTENT & FLEX PATTERNS */
main {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.feature-grid li {
  flex: 1 1 220px;
  background: var(--pastel-blue);
  padding: 24px 18px;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.feature-grid li img {
  height: 38px; width: 38px;
  margin-bottom: 7px;
}
.feature-grid li:hover {
  background: var(--pastel-mint);
  box-shadow: 0 7px 24px var(--shadow);
  transform: translateY(-2px) scale(1.01);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 11px;
  margin-bottom: 15px;
}
.service-list > li, .service-list > div {
  flex: 1 1 240px;
  background: var(--pastel-mint);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 22px 18px 19px 18px;
  box-shadow: 0 3px 14px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.service-list > li:hover, .service-list > div:hover {
  background: var(--pastel-blue);
  box-shadow: 0 7px 18px var(--shadow);
  transform: translateY(-3px) scale(1.01);
}
.service-list img {
  margin-bottom: 8px;
  width: 36px;
  height: 36px;
}
.service-list h3 {
  margin-top: 0px;
}

.contact-info, .contact-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 7px;
}
.contact-info li, .contact-snippet li {
  flex: 1 1 194px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  background: var(--pastel-yellow);
  padding: 10px 13px;
  border-radius: 14px;
}
.contact-info img, .contact-snippet img {
  width: 20px; height: 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--pastel-pink);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 12px var(--shadow);
  padding: 23px 19px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 20px var(--shadow);
  transform: translateY(-2px) scale(1.008);
}

.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: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px var(--shadow);
  max-width: 560px;
  border: 2px solid var(--pastel-blue);
  transition: border 0.18s, box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  border: 2px solid var(--secondary);
  box-shadow: 0 7px 36px var(--shadow);
  transform: translateY(-2px) scale(1.016);
}
.testimonial-card p {
  color: #233048;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-details {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
}
.testimonial-details img {
  width: 68px;
  height: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list li {
  background: var(--pastel-grey);
  border-radius: 12px;
  padding: 14px 18px 13px 18px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 0;
  font-size: 1.01rem;
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

ol {
  margin-left: 22px;
}
ol > li {
  margin-bottom: 11px;
}

ul > li, ol > li {
  margin-bottom: 7px;
}

/* FOOTER */
footer {
  background: var(--accent);
  box-shadow: 0 -2px 12px var(--shadow);
  padding: 31px 0 27px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  font-size: 1rem;
  margin-bottom: 9px;
}
.footer-nav a {
  color: var(--primary);
  opacity: 0.77;
  transition: opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--secondary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.8;
}
.footer-brand img {
  width: 31px; height: auto;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  z-index: 20000;
  background: linear-gradient(90deg, var(--pastel-lavender) 0%, #fff 100%);
  color: var(--primary);
  border-top: 2px solid var(--border);
  box-shadow: 0 -6px 24px var(--shadow);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: cookie-slide-in 0.55s cubic-bezier(.44,.10,.27,1.12);
}
@keyframes cookie-slide-in {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 650px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 7px;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 19px;
  padding: 11px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.2s, box-shadow 0.16s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #49c487;
}
.cookie-banner .reject {
  background: #E97979;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #EEA1A1;
  color: #fff;
}
.cookie-banner .settings {
  background: var(--pastel-lavender);
  color: var(--primary);
  border: 1px solid var(--pastel-blue);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(1);
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 8px 44px var(--shadow), 0 1px 2px #E8EAFE;
  z-index: 25000;
  width: 96%;
  max-width: 425px;
  padding: 34px 27px 28px 27px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  animation: cookie-modal-fade-in 0.38s cubic-bezier(.33,1.15,.8,1.18);
}
@keyframes cookie-modal-fade-in {
  from { opacity: 0; transform: translate(-50%, -71%) scale(0.93); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 10px;
}
.cookie-modal ul {
  margin-bottom: 19px;
  margin-left: 0;
}
.cookie-modal li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 34px; height: 18px;
  border-radius: 28px;
  background: var(--pastel-grey);
  transition: background 0.18s;
  outline: none;
  position: relative;
  margin-right: 9px;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  top: 2.5px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px var(--shadow);
  transition: transform 0.2s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  padding: 11px 17px;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-buttons .save {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal-buttons .save:hover,
.cookie-modal-buttons .save:focus {
  background: #41a474;
}
.cookie-modal-buttons .cancel {
  background: var(--pastel-lavender);
  color: var(--primary);
}
.cookie-modal-buttons .cancel:hover,
.cookie-modal-buttons .cancel:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .contact-info, .contact-snippet, .footer-nav, .card-container, .content-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    padding: 11px 19px;
    font-size: 1rem;
  }
  .feature-grid, .service-list {
    flex-direction: column;
  }
  .contact-info, .contact-snippet, .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .section {
    padding: 23px 10px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 16px 8px;
  }
  .card {
    padding: 16px 8px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .content-grid {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-modal {
    padding: 17px 8px;
    max-width: 97vw;
  }
}

@media (max-width: 500px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.31rem; }
  h3, .h3 { font-size: 1.08rem; }
  .footer-brand span { font-size: 0.91rem; }
  .testimonial-details strong,
  .footer-brand,
  .footer-nav a { font-size: 0.98rem; }
  .cookie-banner p { font-size: 0.95rem; }
}

/* Animations and transitions */
.section, .card, .testimonial-card, .feature-grid li, .service-list > li, .service-list > div {
  transition: box-shadow 0.16s, background 0.16s, transform 0.18s;
}

button, .cta-btn {
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, transform 0.19s;
}

/* Miscellaneous */
::-webkit-input-placeholder { color: #909faf; }
::-moz-placeholder { color: #909faf; }
:-ms-input-placeholder { color: #909faf; }
::placeholder { color: #909faf; }

.hide { display: none !important; }

/* Utility: Ensure spacing between all content blocks & cards */
.section + .section,
.section + footer,
.content-wrapper > * + * {
  margin-top: 23px;
}
.card-container > *,
.card + .card,
.feature-grid > *,
.service-list > *,
.content-grid > *,
.text-image-section > *,
.testimonial-card + .testimonial-card,
.contact-info > *, .contact-snippet > * {
  margin-bottom: 0;
}

/* -------------- END -------------- */
