/* --- CSS RESET & BASE ----------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F7FB;
}
body {
  color: #34513B;
  background: #F9FAFC;
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #34513B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4E7E5A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
}
hr {
  border: none;
  border-bottom: 1px solid #E6ECF2;
  margin: 32px 0;
}

/* --- TYPOGRAPHY ----------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #34513B;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 13px;
  line-height: 1.2;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  line-height: 1.24;
}
p, address, blockquote {
  font-size: 1rem;
  color: #3a3d40;
  line-height: 1.67;
  margin-bottom: 18px;
}
blockquote {
  color: #34513B;
  background: #E8F0FD;
  padding: 18px 26px;
  border-radius: 20px;
  font-style: italic;
  margin: 0 0 18px 0;
  box-shadow: 0 2px 12px 0 rgba(100,130,140,0.07);
}

/* --- CONTAINER & LAYOUTS -------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F6F8;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(177,197,187,0.08);
}

/* Flex patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 3px 16px 0 rgba(80,120,110,0.08);
  margin-bottom: 20px;
  padding: 28px 23px 23px 23px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
}

.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;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F0E9F3;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(160,135,200,0.05);
  max-width: 430px;
  color: #283235;
}
.testimonial-card blockquote {
  background: none;
  color: #34513B;
  padding: 0;
  margin: 0 0 10px 0;
  box-shadow: none;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #7B5E41;
  font-size: 0.98rem;
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7FAFC;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 1px 7px 0 rgba(120,100,30,0.06);
  min-width: 210px;
  max-width: 320px;
}

.icons-inline {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}

/* Text section alignment */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- HEADER & NAV --------------------------------- */
header {
  width: 100%;
  background: linear-gradient(90deg,#E9F6F2 0%, #F2E8ED 100%);
  box-shadow: 0 2px 10px 0 rgba(206, 160, 203, 0.05);
  padding: 0 0 2px 0;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px 17px 20px;
}
.logo img, .footer-logo img {
  height: 51px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #34513B;
  font-weight: 500;
  border-radius: 6px;
  padding: 7px 13px;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E2C799;
  color: #34513B;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #E2C799;
  color: #34513B;
  padding: 11px 28px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 8px 0 rgba(177,180,160,0.10);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, transform 0.09s;
  text-align: center;
  min-width: 122px;
}
.cta-button:hover, .cta-button:focus {
  background: #D8C2AA;
  color: #34513B;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 5px 18px 0 rgba(177,180,160,0.14);
}

/* --- MOBILE BURGER MENU --------------------------- */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #34513B;
  cursor: pointer;
  display: none;
  z-index: 1202;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    padding: 6px 10px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg,#F2F9F6 60%, #F4E7EF 100%);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-105vw);
  transition: transform 0.38s cubic-bezier(0.6,0,0.4,1);
  box-shadow: 0 0 40px 0 rgba(120,89,154,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.9rem;
  background: none;
  border: none;
  color: #34513B;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 1402;
  padding: 0 8px;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #7B5E41;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0 40px;
  margin-top: 26px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #34513B;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0;
  border-radius: 11px;
  background: transparent;
  text-align: left;
  font-weight: 500;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2C799;
  color: #34513B;
}

/* --- FOOTER --------------------------------------- */
footer {
  width: 100%;
  background: linear-gradient(90deg,#F2E8ED 0%, #E9F6F2 100%);
  box-shadow: 0 -2px 12px 0 rgba(180, 128, 201, 0.07);
  margin-top: 70px;
  padding: 32px 0 20px 0;
  color: #34513B;
}
.footer-logo img {
  height: 42px;
  margin-bottom: 21px;
  width: auto;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #34513B;
  font-size: 0.99rem;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #88529E;
  text-decoration: underline;
}
footer address {
  font-style: normal;
  font-size: 0.98rem;
  color: #7B5E41;
  margin-bottom: 13px;
  display: block;
}
footer address a {
  color: #4E7E5A;
  text-decoration: underline;
}
footer small {
  display: block;
  color: #8D7272;
  text-align: center;
  margin-top: 15px;
  opacity: 0.7;
  font-size: 0.94rem;
}

/* --- ICONS & IMAGES -------------------------------- */
.content-wrapper ul img, address img, p img {
  height: 20px;
  width: 20px;
  margin-right: 12px;
  margin-bottom: -3px;
  vertical-align: middle;
}
.icons-inline img {
  height: 40px;
  width: auto;
  background: #F8EFE4;
  border-radius: 15px;
  padding: 9px;
  box-shadow: 0 1px 7px 0 rgba(195,185,155,0.09);
}

/* --- SECTION SPACING ------------------------------ */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section > .container {
  padding: 0 0;
}
@media (max-width: 768px) {
  section {
    padding: 22px 0;
    margin-bottom: 44px;
  }
}

/* --- BUTTONS & INTERACTIONS ----------------------- */
button, .cta-button, .mobile-menu-close, .mobile-menu-toggle {
  outline: none;
  font-family: inherit;
  transition: box-shadow 0.18s, background 0.16s, color 0.14s;
}
button:focus, .cta-button:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #7B5E41;
}

/* --- WHITE CARDS ---------------------------------- */
.card, .testimonial-card, .feature-item {
  box-shadow: 0 2px 9px 0 rgba(105,120,80,0.06);
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 8px 30px 0 rgba(120,100,150,0.12);
  transform: translateY(-2px) scale(1.02);
}

/* --- PASTEL / DREAMY UTILITIES -------------------- */
.pastel-bg {
  background: #F9F5FF;
}
.pastel-primary {
  background: #EFFAF5;
}

/* --- HERO & CTA SECTIONS -------------------------- */
.cta-section, .hero-section {
  background: linear-gradient(102deg, #F9F5FF 60%, #F7F6F8 100%);
  border-radius: 26px;
  box-shadow: 0 2px 16px 0 rgba(160,160,180,0.04);
  padding: 44px 0;
}

/* --- COOKIE CONSENT BANNER & MODAL ---------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F4ED;
  color: #3a3d40;
  padding: 20px 24px;
  z-index: 2000;
  box-shadow: 0 -1px 9px 0 rgba(180,190,180,0.08);
  font-size: 1rem;
  gap: 18px;
}
.cookie-banner p {
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 20px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .accept {
  background: #E2C799;
  color: #34513B;
  font-weight: bold;
}
.cookie-banner .accept:hover { background: #DEC2A0; }
.cookie-banner .reject {
  background: #ECEAF2;
  color: #88529E;
}
.cookie-banner .reject:hover { background: #E1D8E7; }
.cookie-banner .settings {
  background: #F7F6F8;
  color: #34513B;
  border: 1.5px solid #DEC2A0;
}
.cookie-banner .settings:hover { background: #E1D8E7; }

/* Modal overlay for cookie settings */
.cookie-modal-backdrop {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(65, 64, 64, 0.33);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #FFFDF7;
  border-radius: 22px;
  box-shadow: 0 4px 30px 0 rgba(188,158,175,0.17);
  max-width: 405px;
  width: 90vw;
  padding: 36px 28px 28px 28px;
  z-index: 2110;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1.06rem;
}
.cookie-category input[type='checkbox'] {
  width: 18px; height: 18px; accent-color: #E2C799;
}
.cookie-modal-close {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #34513B;
  cursor: pointer;
  margin-bottom: -9px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal-actions button {
  padding: 8px 19px;
  border-radius: 16px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-actions .accept {
  background: #E2C799;
  color: #34513B;
}
.cookie-modal-actions .reject {
  background: #ECEAF2;
  color: #88529E;
}
.cookie-modal-actions .settings {
  background: #F7F6F8;
  color: #34513B;
  border: 1.5px solid #DEC2A0;
}

/* --- RESPONSIVE BREAKPOINTS ----------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
  }
  .main-nav, .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  .container {
    padding: 0 10px;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .card-container, .content-grid, .icons-inline {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card, .testimonial-card, .feature-item {
    min-width: unset;
    max-width: 100vw;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .hero-section, .cta-section {
    padding: 22px 0;
    border-radius: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 5px;
  }
  .footer-logo img, .logo img {
    height: 36px;
  }
}

/* --- UTILITIES ------------------------------------ */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* --- DARK TEXT ON LIGHT BG FOR TESTIMONIALS ------- */
.testimonial-card, .testimonial-card p, .testimonial-card blockquote {
  color: #263826;
}

/* --- ADDITIONAL MICRO-INTERACTIONS ---------------- */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.13s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 12px 32px 0 rgba(165,140,200,0.15);
  transform: translateY(-4px) scale(1.022);
  z-index: 1;
}

/* --- LINKS AND BUTTONS FOCUS VISIBILITY ------------ */
a:focus, button:focus, .cta-button:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #E2C799;
  outline-offset: 2px;
}

/* --- Hide cookie modal by default ------------------ */
.cookie-banner,.cookie-modal-backdrop { display: none; }
body.cookie-banner-visible .cookie-banner { display: flex; }
body.cookie-modal-open .cookie-modal-backdrop { display: flex; }

/* --- Hide mobile menu by default ------------------- */
.mobile-menu { pointer-events: none; opacity: 0; }
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

/* --- Animations ----------------------------------- */
@keyframes SlideInMenu {
  0% { transform: translateX(-110vw); }
  100% { transform: translateX(0); }
}
@keyframes SlideOutMenu {
  0% { transform: translateX(0); }
  100% { transform: translateX(-110vw); }
}
.mobile-menu.open {
  animation: SlideInMenu 0.33s forwards;
}

@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(45px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner {
  animation: fadeInCookie 0.45s;
}
.cookie-modal {
  animation: fadeInCookie 0.35s;
}

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