/* 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,
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;
}
main, header, footer, nav, section, article, aside, figure {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7E6C4;
  color: #29425C;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #29425C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BFD8D2;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* BRAND FONTS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #29425C;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.13;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.07rem;
  margin-bottom: 8px;
}
p, li, blockquote, .testimonial-meta, .feature-item {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #29425C;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #29425C;
}
blockquote {
  font-style: italic;
  color: #29425C;
  background: #fff8ed;
  border-left: 4px solid #BFD8D2;
  padding: 18px 24px;
  margin-bottom: 8px;
  border-radius: 16px 0 0 16px;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: #29425C;
  font-style: normal;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(41, 66, 92, 0.07);
  border-bottom: 3px solid #BFD8D2;
  position: relative;
  z-index: 60;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 70px;
}
.logo img {
  max-height: 52px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: #29425C;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #BFD8D2;
  transition: width 0.2s;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #BFD8D2;
  outline: none;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 32px;
  font-size: 1.11rem;
  border-radius: 32px;
  border: none;
  margin-top: 8px;
  font-weight: 600;
  background: #BFD8D2;
  color: #29425C;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  box-shadow: 0 2px 8px rgba(41,66,92,0.03);
}
.cta-btn.primary {
  background: #29425C;
  color: #fff;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F7E6C4;
  color: #29425C;
  box-shadow: 0 4px 20px 0 rgba(41,66,92,0.11);
  outline: none;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #BFD8D2;
  color: #29425C;
  outline: none;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(92deg, #F7E6C4 80%, #BFD8D2 100%);
  padding: 52px 0 44px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}
.hero h1 {
  color: #29425C;
  font-size: 2.5rem;
}
.hero p {
  color: #29425C;
  font-size: 1.13rem;
  margin-bottom: 10px;
}

/* FEATURE / SERVICE GRIDS */
.feature-grid, .service-grid, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid li, .service-grid > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 22px 0 rgba(41, 66, 92, 0.07);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.23s, transform 0.22s;
  border: 2.5px solid #BFD8D2;
  position: relative;
}
.feature-grid li:hover, .service-grid > div:hover {
  box-shadow: 0 7px 38px 0 rgba(41, 66, 92, 0.18);
  transform: translateY(-4px) scale(1.016);
  z-index: 2;
}
.feature-grid img, .service-grid img {
  height: 36px;
  margin-bottom: 4px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0 20px 0;
}
.service-list li {
  color: #29425C;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(41,66,92,0.07);
  padding: 13px 18px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-icons {
  display: flex;
  gap: 26px;
  margin: 22px 0 8px 0;
}
.feature-icons img {
  background: #BFD8D2;
  border-radius: 11px;
  padding: 8px;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 12px 0 rgba(41, 66, 92, 0.10);
}

/* CARD & FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px 0 rgba(41, 66, 92, 0.09);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
}

/* TESTIMONIALS */
.testimonials {
  background: #BFD8D2;
  border-radius: 0 0 50px 50px;
}
.testimonials h2 {
  color: #29425C;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px 0 rgba(41, 66, 92, 0.11);
  border-radius: 20px;
  flex-wrap: wrap;
  border-left: 5px solid #29425C;
  transition: box-shadow 0.23s, border-left 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 14px 46px 0 rgba(41, 66, 92, 0.15);
  border-left: 5px solid #F7E6C4;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  color: #29425C;
  font-size: 1.05rem;
}
.testimonial-card .testimonial-meta {
  font-weight: 600;
  margin-left: 22px;
  color: #29425C;
  opacity: 0.78;
}

/* CTA SECTION */
.cta {
  background: #29425C;
  color: #fff;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta .cta-btn {
  margin-top: 10px;
}

/* FOOTER */
footer {
  background: #BFD8D2;
  color: #29425C;
  padding: 46px 0 22px 0;
  border-top: 4px solid #29425C;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 38px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #29425C;
  background: #fff8ed;
  border-radius: 9px;
  padding: 6px 14px;
  transition: background 0.18s, color 0.16s;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #29425C;
  color: #fff;
}
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}
.brand-info img {
  max-height: 38px;
}
.small-contact {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
  font-size: 0.97rem;
}
.small-contact img {
  vertical-align: middle;
  margin-right: 8px;
  height: 16px;
  width: 16px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 6px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #fff;
  padding: 4px;
  transition: box-shadow 0.2s, background 0.2s;
}
.social-links a:hover img, .social-links a:focus img {
  box-shadow: 0 2px 10px 0 #29425c52;
  background: #BFD8D2;
}

/* TEXT-IMAGE & TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
}
.cta-box {
  background: #BFD8D2;
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #29425C;
  color: #fff;
  z-index: 150;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 32px;
  font-size: 1rem;
  box-shadow: 0 -1px 24px 0 rgba(41,66,92,0.17);
  animation: bannerAppear 0.5s cubic-bezier(.72,1.62,.84,.85);
}
@keyframes bannerAppear {
  0%{transform:translateY(100%);opacity:0;}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-consent-banner button {
  margin: 0 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 22px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #BFD8D2;
  color: #29425C;
  transition: background 0.19s, color 0.19s;
}
.cookie-consent-banner button.primary {
  background: #fff;
  color: #29425C;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #F7E6C4;
  color: #29425C;
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(41, 66, 92, 0.47);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: cookieOverlayEnter .4s ease;
}
@keyframes cookieOverlayEnter {
  0%{opacity:0}
  100%{opacity:1}
}
.cookie-modal {
  background: #fff;
  color: #29425C;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 12px 64px rgba(41, 66, 92, 0.25);
  padding: 40px 30px 34px 30px;
  min-width: 320px;
  max-width: 95vw;
  width: 420px;
  position: relative;
  animation: cookieModalEnter 0.36s cubic-bezier(.53,1.5,.68,.93);
}
@keyframes cookieModalEnter {
  0%{transform:translateY(55px) scale(0.96);opacity:0;}
  100%{transform:translateY(0) scale(1);opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.cookie-modal ul {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal li {
  font-size: 1rem;
  color: #29425C;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category-toggle {
  margin-left: auto;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  appearance: none;
  background: #BFD8D2;
  border-radius: 14px;
  outline: none;
  transition: background 0.18s;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #29425C;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 1px; left: 1px;
  transition: left 0.16s;
}
.cookie-toggle:checked:before{
  left: 15px;
}
.cookie-modal-actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal-close{
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: #29425C;
  font-size: 1.35rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus{
  color: #BFD8D2;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #BFD8D2;
  color: #29425C;
  border: none;
  padding: 9px 18px;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.13s, color 0.16s;
  z-index: 115;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #29425C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #29425C;
  color: #fff;
  z-index: 130;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.75,0,.25,1);
  box-shadow: -12px 0 60px 0 rgba(41, 66, 92, 0.23);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  right: 18px;
  top: 20px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #BFD8D2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  width: 100%;
  margin-top: 80px;
  align-items: flex-start;
  padding: 0 35px;
}
.mobile-nav a {
  color: #fff;
  padding: 12px 0;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7E6C4;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .footer-menu {
    gap: 10px;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-grid > div {
    max-width: none;
  }
  .content-grid {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 16px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    padding: 11px 18px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 34px 0 24px 0;
  }
  .section {
    margin-bottom: 36px;
    padding: 18px 6px;
  }
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonials {
    border-radius: 0 0 24px 24px;
    padding-bottom: 24px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
  .footer-menu {
    gap: 8px;
    margin-bottom: 14px;
  }
  .brand-info img {
    max-height: 32px;
  }
  .cta {
    border-radius: 18px 18px 0 0;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }
  .content-wrapper {
    max-width: 97vw;
    gap: 14px;
  }
  .text-section {
    gap: 11px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .card, .feature-grid li, .service-grid > div {
    padding: 11px 7px;
  }
  .cta-btn, .cta-btn.primary {
    padding: 8px 13px;
    font-size: 0.99rem;
  }
  .cookie-modal {
    width: 99vw; max-width: 99vw; min-width: unset;
    padding: 20px 8px 22px 8px;
  }
}
@media (max-width: 440px) {
  .mobile-nav {
    font-size: 1.03rem;
    padding: 0 10px;
    margin-top: 65px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 5vw;
    font-size: 0.96rem;
  }
}
/* VISUAL & ARTISTIC TOUCHES */
.hero {
  position: relative;
}
.hero:after {
  content: '';
  position: absolute;
  right: -70px; top: -55px;
  width: 180px; height: 90px;
  background:
    repeating-linear-gradient(120deg, #BFD8D2 0px, #BFD8D2 6px, transparent 6px, transparent 15px); 
  opacity: 0.10;
  transform: rotate(8deg);
  pointer-events: none;
  border-radius: 45px;
  z-index: 0;
}
.cta {
  overflow: hidden;
  position: relative;
}
.cta:before {
  content: '';
  position: absolute;
  left: -65px; bottom: -40px;
  width: 120px;
  height: 80px;
  background: repeating-linear-gradient(90deg, #BFD8D2 0px, #BFD8D2 10px, transparent 10px, transparent 24px);
  opacity: 0.08;
  border-radius: 32px;
  pointer-events: none;
}
.feature-grid li:after, .service-grid > div:after {
  content: '';
  position: absolute;
  right: 12px; bottom: 10px;
  width: 36px; height: 18px;
  background: repeating-linear-gradient(90deg, #BFD8D2 0px, #BFD8D2 7px, transparent 7px, transparent 16px);
  border-radius: 6px;
  opacity: 0.13;
  pointer-events: none;
}

/* FORCED FLEX-ONLY LAYOUT OVERRIDES */
/* Ensure all layout containers are flex and NO grid */
.card-container, .content-grid, .feature-grid, .service-grid, .footer-menu, .main-nav, .container, .content-wrapper, .feature-icons, .testimonial-card, .text-section, .social-links, .brand-info, .small-contact, .mobile-nav {
  display: flex;
}
.card-container, .content-grid, .feature-grid, .service-grid, .footer-menu, .main-nav, .feature-icons, .social-links, .content-wrapper {
  flex-wrap: wrap;
}
.card, .feature-grid li, .service-grid > div, .testimonial-card, .cta-box, .text-section, .brand-info, .mobile-nav {
  flex-direction: column;
}

/* UI MICRO-INTERACTIONS & ANIMATIONS */
.card, .feature-grid li, .service-grid > div, .testimonial-card, .cta-box, .cta-btn, .footer-menu a, .mobile-menu, .mobile-nav a {
  transition: box-shadow 0.23s, background 0.23s, color 0.19s, transform 0.16s;
}
.card:hover, .feature-grid li:hover, .service-grid > div:hover {
  transform: translateY(-3px) scale(1.017);
  box-shadow: 0 12px 36px 0 rgba(41, 66, 92, 0.13);
}
.cta-btn:active {
  transform: scale(0.97);
}

/* A11Y FOCUS OUTLINE for BUTTONS & LINKS */
button:focus-visible, .cta-btn:focus-visible, a:focus-visible {
  outline: 2px dashed #BFD8D2;
  outline-offset: 2px;
}

/* CUSTOM SCROLLBAR */
body::-webkit-scrollbar {
  width: 12px;
  background: #F7E6C4;
}
body::-webkit-scrollbar-thumb {
  background: #BFD8D2;
  border-radius: 12px;
}

/* END OF CSS */
