/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background: #FAFBFF;
  color: #28485B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
}

a {
  color: #28485B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6B032;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #28485B;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.17;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #28485B;
}

strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/* CONTAINER PATTERN */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #FAFBFF 0%, #F7EDFC 100%);
  box-shadow: 0 2px 16px 0 rgba(220, 200, 250, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
  position: relative;
  min-height: 70px;
  z-index: 30;
}
header > a img {
  height: 48px;
  margin: 12px 0 12px 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  color: #28485B;
}
nav a.button-primary {
  margin-left: 12px;
  background: #F6B032;
  color: #28485B;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(246, 176, 50, 0.20);
  transition: background 0.17s, color 0.2s, box-shadow 0.17s;
}
nav a.button-primary:hover, nav a.button-primary:focus {
  background: #FFD67C;
  color: #28485B;
  box-shadow: 0 4px 24px rgba(246, 176, 50, 0.28);
}
nav a:hover, nav a:focus {
  background: #E9EAFD;
  color: #F6B032;
}

/* Mobile menu burger */
.mobile-menu-toggle {
  display: none;
  background: #F6B032;
  color: #28485B;
  font-size: 2rem;
  border-radius: 10px;
  padding: 6px 16px;
  margin: 0 18px 0 8px;
  box-shadow: 0 2px 7px rgba(246,176,50,0.13);
  cursor: pointer;
  z-index: 45;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD67C;
  color: #28485B;
  outline: 2px solid #F6B032;
  outline-offset: 2px;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 235, 250, 0.97);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.64,.04,.35,1.11);
  box-shadow: -6px 0 36px 0 rgba(223, 195, 242, 0.13);
  padding: 0 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #ffe2f7;
  color: #28485B;
  font-size: 2rem;
  border-radius: 50%;
  margin: 24px 0 16px 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F6B032;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #28485B;
  padding: 12px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.18s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6B032;
  color: #ffffff;
}


/* LAYOUT / FLEXBOX SECTION PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid li {
  background: #FFFDF9;
  border-radius: 17px;
  box-shadow: 0 3px 10px 0 rgba(174, 186, 255, 0.10);
  padding: 26px 20px 18px 20px;
  flex: 1 1 250px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #E7E8F3;
  position: relative;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 32px -4px rgba(117, 166, 255, 0.18);
  transform: translateY(-4px) scale(1.01);
  border-color: #EAE4FB;
}
.feature-grid li img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(200,200,250,0.11);
  background: #EEF6FF;
}
.feature-grid h3 {
  font-size: 1.18rem;
  color: #28485B;
  margin-bottom: 4px;
}
/* .feature-item pattern applied */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CARD & FLEX PATTERNS */
.card-container,
.card-grid,
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.card, .service-card {
  background: #F7F8FE;
  border-radius: 17px;
  box-shadow: 0 3px 12px 0 rgba(164, 210, 235, 0.10);
  margin-bottom: 20px;
  padding: 28px 22px 18px 22px;
  position: relative;
  min-width: 210px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  border: 1.5px solid #E5ECFF;
  transition: box-shadow 0.18s, border 0.18s, transform 0.13s;
}
.card:hover, .service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(117, 166, 255, 0.18);
  border: 1.5px solid #F6B032;
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.text-section {
  margin-top: 20px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* TESTIMONIALS */
.testimonials {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #FFFDF9;
  border-radius: 17px;
  box-shadow: 0 3px 18px 0 rgba(198, 174, 248, 0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  min-height: 108px;
  border: 1.3px solid #F4E2FD;
  position: relative;
  transition: box-shadow 0.18s, border 0.14s, transform 0.14s;
}
.testimonial-card p {
  color: #28485B;
  font-size: 1.07rem;
  flex: 1 1 auto;
  margin-right: 12px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #98659F;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.90;
  min-width: 100px;
  text-align: right;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(182, 193, 219, 0.19);
  border-color: #FFD67C;
  transform: translateY(-3px) scale(1.012);
}
.rating-summary {
  margin-top: 26px;
  font-size: 1.13rem;
  color: #28485B;
  background: #F7E6DF;
  border-radius: 11px;
  padding: 12px 22px;
  box-shadow: 0 2px 6px rgba(255, 200, 130, 0.09);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.rating-summary strong {
  color: #F6B032;
}
.rating-summary span {
  opacity: 0.85;
  font-size: 0.98rem;
}

/* BUTTONS */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 11px;
  background: #F6B032;
  color: #28485B!important;
  padding: 12px 28px;
  box-shadow: 0 3px 16px rgba(246, 176, 50, 0.11);
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.18s, transform 0.13s;
}
.button-primary:hover, .button-primary:focus {
  background: #FFD67C;
  color: #28485B!important;
  box-shadow: 0 8px 36px 0 rgba(255, 214, 124, 0.12);
  transform: translateY(-2px) scale(1.027);
  outline: none;
}

/* FORM & INPUTS */
input, textarea, select {
  background: #FFFDF9;
  border-radius: 9px;
  border: 1.3px solid #E5E9F4;
  font-size: 1rem;
  padding: 13px 16px;
  width: 100%;
  margin-bottom: 16px;
  transition: border 0.17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #F6B032;
  background: #fffbe8;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 7px;
  font-size: 1rem;
  color: #28485B;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #F8FAFE 0%, #FAF6FD 100%);
  box-shadow: 0 -1px 12px 0 rgba(164, 210, 235, 0.08);
  padding: 38px 0 20px 0;
  width: 100%;
  margin-top: 52px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #98659F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 4px 18px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E9EAFD;
  color: #F6B032;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 0.98rem;
  color: #28485B;
  align-items: center;
  text-align: center;
}
.footer-contact a {
  color: #F6B032;
  font-weight: 700;
  transition: color 0.17s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #98659F;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 21px;
  margin-top: 10px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  transition: transform 0.13s, box-shadow 0.18s;
  border-radius: 8px;
  background: #F2F9FF;
}
.footer-social a:hover img, .footer-social a:focus img {
  transform: scale(1.13) rotate(-4deg);
  box-shadow: 0 2px 14px #F6B03255;
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #f5eafc;
  color: #28485B;
  box-shadow: 0 -2px 30px 0 rgba(132,90,185,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  animation: bannerIn 0.33s cubic-bezier(.78,.1,.32,1.12);
}
@keyframes bannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 9px rgba(246, 176, 50, 0.10);
  cursor: pointer;
  background: #FFE5D4;
  color: #28485B;
  transition: background 0.13s, color 0.13s;
  font-weight: 600;
}
.cookie-btn.accept {
  background: #F6B032;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD67C;
  color: #28485B;
}
.cookie-btn.reject {
  background: #F9D0DE;
  color: #28485B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F69191;
  color: #fff;
}
.cookie-btn.settings {
  background: #eae2f9;
  color: #826CC5;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #866FE6;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(40,72,91,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3050;
}
.cookie-modal .modal-content {
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 22px 54px 0 rgba(130,107,206,0.15);
  padding: 36px 32px 24px 32px;
  max-width: 400px;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  animation: modalIn 0.3s cubic-bezier(.72,.01,.26,1.25);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.87) translateY(60px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin: 0 0 6px 0;
}
.cookie-settings-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-setting {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 10px;
  border-radius: 8px;
  background: #f6f5fa;
}
.cookie-setting label {
  font-size: 1rem;
}
.cookie-setting input[type="checkbox"] {
  width: 21px; height: 21px;
  accent-color: #F6B032;
  border-radius: 5px;
}
.cookie-setting input[disabled] {
  opacity: 0.47;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #B885C2;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #F6B032;
}


/* SPACING AND FLEXBOX ENFORCEMENT PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* GENERIC SPACING */
main section + section {
  margin-top: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {max-width: 96vw;}
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .card-container, .testimonials, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header, footer {
    flex-direction: column;
    padding: 0 0 0 0;
  }
  header > a img {
    margin: 12px 0 7px 10px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 34px 8px;
    margin-bottom: 40px;
  }
  .feature-grid, .service-cards, .card-container, .testimonials, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .footer-nav, .footer-contact, .footer-social {
    flex-direction: column;
    gap: 9px;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    margin-top: 10px;
  }
  .content-wrapper {
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 4px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    font-size: 0.97rem;
    padding: 18px 10px;
  }
  .cookie-modal .modal-content {
    padding: 23px 8px 18px 8px;
    max-width: 96vw;
    min-width: 0;
  }
}
@media (max-width: 440px) {
  html { font-size: 13.5px; }
  .feature-grid li, .service-card, .card {
    padding: 18px 7px 12px 10px;
    min-width: 0;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
}

/* SCROLLBAR STYLING for subtle feel */
::-webkit-scrollbar {
  width: 9px;
  background: #F6F2FF;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #eed6f2;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F6B03255;
}

/* Microinteractions */
.button-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .footer-social a img, .feature-grid li, .service-card, .testimonial-card, nav a {
  transition: 
    background 0.13s, 
    color 0.13s,
    box-shadow 0.13s, 
    outline 0.20s,
    transform 0.12s;
}

/* Dreamy pastel background utility (optional use for special sections) */
.pastel-bg-dream {
  background: linear-gradient(102deg, #FFE5D4 0%, #EDF4FC 67%, #F8E9FC 100%);
  border-radius: 16px 16px 24px 24px;
  box-shadow: 0 2px 16px 0 rgba(220, 200, 250, 0.13);
}

/* Accessibility: Focus Style */
a:focus, button:focus, .button-primary:focus, .cookie-btn:focus {
  outline: 2px solid #F6B032;
  outline-offset: 2px;
}


/*--- End of CSS ---*/