/* RESET & BASE TYPOGRAPHY */
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAF9F6;
  color: #23313C;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}
a {
  color: #624ec8;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #23313C;
}

ul, ol {
  list-style: none;
}

strong {
  font-weight: 600;
}

/* BRAND TYPOGRAPHY */
h1, .hero h1, .confirmation h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: 0.01em;
  color: #23313C;
}
@media (min-width:768px) {
  h1, .hero h1, .confirmation h1 {
    font-size: 2.6rem;
  }
}
h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #22313C;
  margin-bottom: .75em;
}
h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #283848;
}
h4 { font-size: 1.05rem; }

p, ul li, ol li, span, label, input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #23313C;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (min-width: 992px) {
  section, .section {
    padding: 60px 0;
    margin-bottom: 80px;
  }
}

.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  padding: 14px 20px;
  background: #F3EDD9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(150,150,150,0.03),0 1.5px 0 #E3DFCF;
  position: relative;
  z-index: 40;
}
.logo img {
  width: 42px;
  height: auto;
  margin-right: 16px;
}
.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #23313C;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #624ec8;
}
.btn-primary {
  padding: 10px 28px;
  background: #ABB095;
  color: #23313C;
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  box-shadow: 0 1px 10px rgba(160,170,130,.08);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .2s;
  margin-left: 16px;
  letter-spacing: 0.01em;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #E5ECCA;
  color: #624ec8;
  box-shadow: 0 4px 18px rgba(160,170,130,.16);
}
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #23313C;
  line-height: 1;
  cursor: pointer;
  display: block;
  margin-left: 16px;
  z-index: 45;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .btn-primary {
    margin-left: 32px;
  }
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(243, 237, 217, 0.96);
  box-shadow: 0 0 80px 0 rgba(90,90,90,0.08);
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.86,0,.07,1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #23313C;
  align-self: flex-end;
  margin: 22px 28px 8px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #23313C;
  border-radius: 20px;
  width: 100%;
  padding: 10px 6px 10px 0;
  transition: background .14s, color .2s;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #E6DCFF;
  color: #624ec8;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

/* HERO BANNER */
.hero {
  background: linear-gradient(160deg, #F9F6F8 0%, #E6EFFF 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 4px 32px 0 rgba(180, 160, 200, 0.12);
  margin-bottom: 40px;
  padding-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  flex-direction: column;
  display: flex;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 18px 0 0 0;
  text-align: left;
}
.hero h1 {
  color: #23313C;
  font-size: 2.1rem;
}
.hero p {
  font-size: 1.1rem;
  color: #23313C;
  opacity: 0.88;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 24px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.19rem;
  }
  .hero .content-wrapper {
    gap: 28px;
    text-align: left;
    align-items: flex-start;
  }
}

/* FEATURE GRID & SERVICES */
.features, .services {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 2px 20px rgba(220,190,244, 0.07);
}
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: flex-start;
}
.feature-item, .service-item {
  background: #FAF7FD;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(203,175,219,.08);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .14s;
}
.feature-item img, .service-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 5px;
}
.feature-item h3, .service-item h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #624ec8;
  margin-bottom: 6px;
}
.feature-item p, .service-item p {
  color: #23313C;
  opacity: 0.93;
  font-size: 1rem;
  margin-bottom: 3px;
}
.feature-item a {
  display: inline-block;
  margin-right: 13px;
  margin-top: 7px;
  font-size: 1.05rem;
  color: #624ec8;
  font-weight: 500;
  transition: color .2s, text-decoration .2s;
}
.feature-item a:hover,
.feature-item a:focus {
  color: #23313C;
  text-decoration: underline;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 8px 32px rgba(203,175,219,.14);
  transform: translateY(-2px) scale(1.012);
}

@media (max-width: 768px) {
  .feature-grid, .service-list {
    gap: 20px;
    flex-direction: column;
  }
  .feature-item, .service-item {
    flex: 1 1 100%;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .feature-grid, .service-list {
    flex-direction: row;
    gap: 30px;
  }
  .feature-item, .service-item {
    min-width: 230px;
    max-width: 345px;
  }
}

/* GENERAL CARDS & CONTENT LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: #F7FCFD;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(210,220,240,0.07);
  padding: 20px;
  transition: box-shadow .18s, transform .13s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(160,170,180,.18);
  transform: translateY(-2px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 18px;
}
.text-section ul {
  margin-top: 9px;
  padding-left: 18px;
}
.text-section ul li {
  list-style: disc inside;
  margin-bottom: 6px;
  color: #495A64;
  font-size: 1rem;
}
.text-section h3 {
  margin-top: 18px;
}

/* CTA (Call-to-Action) */
.call-to-action {
  background: #E7F7E9;
  border-radius: 22px;
  box-shadow: 0 2px 24px rgba(180,200,190,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 38px;
}
.call-to-action h2 {
  color: #344B39;
  font-weight: 600;
}
.call-to-action p {
  font-size: 1.09rem;
  margin: 7px 0 16px 0;
  color: #4E6357;
}

/* TESTIMONIALS */
.testimonials {
  background: #FDFCFD;
  border-radius: 18px;
}
.testimonials h2 {
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(173,156,184,0.13);
  padding: 20px;
  margin-bottom: 24px;
  max-width: 570px;
  color: #1a2732;
  font-size: 1.08rem;
  position: relative;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #1A2732;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #665c51;
  opacity: 0.88;
  margin-left: 3px;
}

@media (min-width: 600px) {
  .testimonials .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    box-shadow: 0 4px 22px rgba(156,128,184,0.10);
  }
}

/* LEGAL/CONFIRMATION */
.legal {
  background: #F3F0FA;
  border-radius: 22px;
  box-shadow: 0 2px 20px rgba(215,200,245,0.085);
}
.confirmation {
  background: #EFF9F3;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(190,220,180,.12);
  text-align: center;
  margin-bottom: 30px;
}
.confirmation h1 {
  color: #344B39;
}
.confirmation p {
  font-size: 1.11rem;
  color: #4E6357;
  margin-bottom: 12px;
}

/* CONTACT SECTION */
.contact {
  background: #FBFCEA;
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(216,242,182,0.12);
}
.contact h2 {
  color: #30563C;
}
.contact p, .contact a {
  color: #253B37;
}

/* FOOTER */
footer {
  background: #F3EDD9;
  padding: 32px 20px 16px 20px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 16px rgba(180,170,130,0.04);
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #23313C;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.85;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #624ec8;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.footer-brand img {
  width: 34px;
  height: auto;
  border-radius: 100%;
}
.footer-brand p {
  font-size: .97rem;
  color: #818677;
  opacity: .82;
  margin-top: 2px;
}

@media (max-width: 520px) {
  .footer-brand, .footer-nav {
    flex-direction: column;
    gap: 9px !important;
    align-items: center;
  }
}

/* BUTTONS & INTERACTION */
button,
input[type='button'],
input[type='submit'] {
  border: none;
  outline: none;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background .16s, box-shadow .13s;
}
.btn-primary:active {
  background: #dce6e0;
  color: #624ec8;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FDF6FA;
  color: #23313C;
  box-shadow: 0 -2px 18px 0 rgba(190,170,200,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 24px 16px;
  z-index: 1500;
  font-size: 1.05rem;
  border-radius: 28px 28px 0 0;
  animation: cookieSlideIn .45s ease;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: 18px;
  background: #CFE7F0;
  color: #23313C;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  border: none;
  margin: 0;
  transition: background .18s, color .12s, box-shadow .13s;
  box-shadow: 0 1px 4px 0 rgba(120,120,200,.07);
}
.cookie-btn.accept {
  background: #ABB095;
  color: #23313C;
}
.cookie-btn.reject {
  background: #E6A6A6;
  color: #23313C;
}
.cookie-btn.settings {
  background: #E9E6F2;
  color: #624ec8;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #EBDFFF;
  color: #624ec8;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 310px;
  max-width: 95vw;
  width: 430px;
  background: #FFFFFF;
  color: #23313C;
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(70,80,170,.22);
  z-index: 5005;
  transform: translate(-50%, 100vh);
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s cubic-bezier(.39,0,.39,1), transform .26s cubic-bezier(.39,0,.39,1);
  padding: 34px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.19rem;
  color: #624ec8;
  margin-bottom: 9px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #E6E7E6;
  border-radius: 18px;
  position: relative;
  outline: none;
  transition: background .13s;
  margin-right: 7px;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #ABB095;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(150,150,180,0.08);
  transition: transform .13s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}

.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #624ec8;
  opacity: 0.75;
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 600px) {
  .cookie-modal {
    width: 95vw;
    min-width: unset;
    padding: 18px 10px 16px 10px;
  }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1070px) {
  .container, .content-wrapper { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 900px) {
  .container, .content-wrapper { max-width: 99vw; }
  .feature-item, .service-item, .card { max-width: 99vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 1rem; }
  .container, .content-wrapper {
    padding-left: 6px;
    padding-right: 6px;
  }
  section, .section {
    margin-bottom: 34px;
    padding: 30px 9px;
  }
  .features, .services {
    border-radius: 20px;
    box-shadow: 0 1.5px 8px 0 rgba(200,200,206,0.08);
  }
  .call-to-action, .contact, .confirmation, .legal {
    border-radius: 18px;
  }
}

/* UTILITY FLEXBOX CLASSES (for future extensibility) */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap:32px; }


/* ------ SOFT PASTEL ATMOSPHERE / SELECTION ------ */
::selection {
  background: #E2DEFC;
  color: #624ec8;
}
::-webkit-scrollbar {
  width: 13px;
  background: #F3EDD9;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #E1D1FC;
  border-radius: 8px;
}

