/* RESET & BASE STYLES */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F8F8;
  color: #23445C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #23445C;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:focus, button:focus {
  outline: 2px solid #BC8A58;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.2;
  color: #23445C;
  font-weight: 600;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 1em;
  font-size: 1rem;
  color: #23445C;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 700;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LAYOUT: FLEXBOX ONLY */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff6fa;
  border-radius: 24px;
  box-shadow: 0 2px 28px 0 rgba(66, 90, 120, 0.05);
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(180, 166, 190, 0.11);
  position: relative;
  flex: 1 1 300px;
  min-width: 275px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(83, 66, 110, 0.14);
  transform: translateY(-4px) scale(1.01);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FEATURE/INFO/CTA FLEX ARRAYS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-cards, .category-listings, .product-cards ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(160,177,210,0.09);
  padding: 32px 26px;
  flex: 1 1 260px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(140,180,220,0.15);
  transform: translateY(-6px) scale(1.022);
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-top: 14px;
  color: #BC8A58;
  font-weight: 600;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li {
  background: #fff6fa;
  border-radius: 14px;
  padding: 20px 16px;
}
.service-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 20px 0 0 0;
}
.service-steps li {
  background: #e7f5fb;
  border-radius: 16px;
  padding: 18px 14px 14px 56px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  flex: 1 1 250px;
  position: relative;
  min-width: 210px;
}
.service-steps li img {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 2px #def2f8);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.category-list li {
  background: #e9eeff;
  border-radius: 14px;
  padding: 13px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2d497a;
}
.category-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.category-filters li {
  background: #f2eedf;
  border-radius: 12px;
  padding: 9px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #6d4a28;
  margin-bottom: 6px;
}
.product-cards ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.product-cards li {
  background: #fff;
  border-radius: 13px;
  padding: 16px 13px;
  box-shadow: 0 2px 10px 0 rgba(200, 170, 130, 0.10);
  min-width: 205px;
  flex: 1 1 205px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.product-cards li span {
  display: block;
  font-size: 0.96rem;
  margin-top: 6px;
  color: #6b7586;
}

.highlight-content {
  background: #f0f7fa;
  border-radius: 13px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px 0 rgba(188,200,220,0.055);
  margin-top: 20px;
}
.highlight-content a.secondary-cta {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .service-cards, .category-listings, .product-cards ul {
    flex-direction: column;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .category-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* TEXT SECTIONS */
.text-section {
  background: #FFFAFC;
  border-radius: 15px;
  padding: 24px 20px 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(210, 180, 220, 0.06);
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin: 10px 0 17px 0;
}
.text-section li {
  margin-bottom: 7px;
  color: #23445C;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* BUTTONS & CTAS */
.primary-cta, .secondary-cta {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  border-radius: 30px;
  background: #23445C;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(180,200,220,0.07);
  transition: background 0.21s, color 0.15s, box-shadow 0.18s, transform 0.16s;
  margin-top: 8px;
  text-align: center;
}
.primary-cta:hover, .primary-cta:focus {
  background: #2f5273;
  color: #fffbea;
  box-shadow: 0 6px 24px 0 rgba(83,100,110,0.13);
  transform: translateY(-2px) scale(1.025);
}
.secondary-cta {
  background: #BC8A58;
  color: #fff;
  margin-left: 8px;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #94612B;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #ffeefd;
  box-shadow: 0 1px 16px 0 rgba(100,120,150,0.08);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #23445C;
  padding: 8px 6px;
  border-radius: 10px;
  transition: background 0.16s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #e9eeff;
  color: #BC8A58;
}
header .primary-cta {
  margin-left: 16px;
  padding: 10px 24px;
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 102;
  background: #23445C;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(50,70,100,0.10);
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #BC8A58;
  color: #fffbe6;
}

@media (max-width: 900px) {
  header nav, header .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(240, 245, 250, 0.9);
  box-shadow: 0 2px 28px 0 rgba(67,44,99,0.18);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(0.61, 0.15, 0.28, 1.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 2px 60px 0 rgba(40,24,80,0.21);
}
.mobile-menu-close {
  background: #BC8A58;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 18px;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-end;
  margin: 22px 20px 6px 0;
  cursor: pointer;
  z-index: 2100;
  box-shadow: 0 2px 10px 0 rgba(180,166,130,0.13);
  transition: background 0.16s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #45341e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 32px;
  width: 100vw;
  margin-top: 16px;
}
.mobile-nav a {
  font-size: 1.25rem;
  line-height: 1.7;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2d497a;
  padding: 14px 0;
  width: 100%;
  border-radius: 14px;
  background: transparent;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e9eeff;
  color: #BC8A58;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* BANNER: HERO */
main > section:first-child {
  background:
    linear-gradient(130deg, #f0f7fa 80%, #ffeefd 100%)
    #f0f7fa;
  min-height: 340px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 2px 38px 0 rgba(170,170,184,0.12);
}
main > section:first-child h1 {
  color: #23445C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  margin-bottom: 16px;
  margin-top: 18px;
}
main > section:first-child p {
  color: #2d497a;
}


/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fffbe6;
  border-radius: 19px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(130, 110, 80, 0.14);
  min-width: 260px;
  color: #23445C;
  font-size: 1.09rem;
  font-style: italic;
  position: relative;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(180,140,80,0.14);
}
.testimonial-card p {
  color: #23445C;
  font-style: italic;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.testimonial-card .author {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #694c2c;
  font-style: normal;
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .testimonial-card {
    padding: 18px 10px;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list li {
  background: #f2f8fe;
  border-radius: 13px;
  padding: 18px 16px 12px 18px;
  transition: box-shadow 0.13s;
  box-shadow: 0 2px 8px 0 rgba(150,190,210,0.10);
}
.faq-list strong {
  display: block;
  margin-bottom: 5px;
  color: #23445C;
}
.faq-list p {
  margin-bottom: 0;
  color: #315075;
  font-size: 1.01rem;
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 0.95rem;
  flex-wrap: wrap;
  margin-top: 7px;
}
.footer-contact a {
  color: #23445C;
}

.contact-map {
  background: #f0f1ff;
  border-radius: 13px;
  padding: 15px 18px;
  margin-top: 6px;
  font-size: 1rem;
  color: #23445C;
  box-shadow: 0 2px 7px 0 rgba(70,110,200,.06);
}

/* BRAND COLORS PREVIEW */
.brand-colors span {
  margin-right: 8px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}
.brand-style-preview, .brand-colors, .brand-typography {
  background: #f7fff8;
  border-radius: 13px;
  padding: 16px 18px 10px 18px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px 0 rgba(140,200,160,0.06);
}

/* FOOTER */
footer {
  background: #ffeefd;
  padding: 38px 0 16px 0;
  box-shadow: 0 -3px 10px 0 rgba(150,180,200,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  margin-top: 8px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23445C;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: #e9eeff;
  color: #BC8A58;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe6;
  color: #23445C;
  z-index: 3000;
  box-shadow: 0 -2px 15px 0 rgba(188,138,88,0.17);
  padding: 20px 12px 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(.62,.17,.37,.87), opacity 0.18s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #23445C;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  border-radius: 23px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background 0.17s, color 0.18s;
}
.cookie-banner .accept {
  background: #23445C;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #435a74;
  color: #fffbe6;
}
.cookie-banner .reject {
  background: #eee3fb;
  color: #23445C;
  border: 1px solid #BC8A58;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffeefd;
  border-color: #94612B;
}
.cookie-banner .settings {
  background: #BC8A58;
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #94612B;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 70%) scale(0.985);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 9px 40px 0 rgba(188,138,80,0.24);
  padding: 34px 26px 26px 26px;
  min-width: 325px;
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s cubic-bezier(0.56,0.23, 0.38, 0.94), opacity 0.21s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #23445C;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .category-label {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal .always-on {
  color: #BC8A58;
  font-size: 0.95rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  margin-left: 10px;
}
.cookie-modal .toggle {
  width: 42px;
  height: 26px;
  background: #e7ecfb;
  border-radius: 13px;
  position: relative;
  margin-left: 10px;
  border: 1px solid #e3dccf;
  transition: background 0.16s;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  background: #BC8A58;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: left 0.22s, background 0.15s;
}
.cookie-modal .toggle input:checked + .toggle-slider {
  left: 19px;
  background: #23445C;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  background: #eee3fb;
  color: #23445C;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #ffeefd;
  color: #BC8A58;
}

@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .cookie-modal {
    min-width: 92vw;
    padding: 24px 7vw 16px 7vw;
  }
}


/* MICRO-INTERACTIONS (hover/active) */
button, .primary-cta, .secondary-cta {
  transition: background 0.13s, color 0.12s, box-shadow 0.13s, transform 0.11s;
}

/* VISUAL HIERARCHY: SPACING */
main>section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 700px) {
  main>section {
    padding: 28px 0 20px 0;
    margin-bottom: 34px;
  }
}

/* MODERN SHADOW & RADIUS DEFAULTS */
.section, .card, .service-card, .testimonial-card, .text-section, .faq-list li, .brand-style-preview, .brand-colors, .brand-typography, .category-list li,
.highlight-content, .product-cards li, .contact-map, .service-list li {
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(180, 177, 200, 0.07);
}


/* TYPOGRAPHY SCALE */
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.07rem; }
  p, ul, li { font-size: 0.96rem; }
}

/* ACCESSIBILITY & CONTRAST */
.testimonial-card,
.faq-list li,
.cookie-banner,
.cookie-modal {
  color: #23445C;
  background: #fffbe6;
}
.testimonial-card p, .testimonial-card .author {
  color: #23445C;
}

/* DECORATIVE: IMAGES/ICONS */
.brand-colors ul {
  margin-top: 12px;
}
.brand-colors li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.brand-typography ul {
  margin-top: 6px;
}
.brand-typography li {
  margin-bottom: 4px;
  color: #4e535c;
}

/* Prevent overflow */
body {
  overflow-x: hidden;
}
main {
  min-height: 60vh;
}

/* Hide overlapping, ensure spacing */
.card, .service-card, .testimonial-card, .faq-list li, .product-cards li, .category-list li, .service-steps li {
  margin-bottom: 20px;
}

/* GLOBAL GAPS */
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  90% { opacity: 0.96; }
  100% { opacity: 1; transform: translateY(0); }
}
.section, .card, .service-card, .testimonial-card, .faq-list li, .cookie-banner, .cookie-modal {
  animation: fadeInUp 0.65s cubic-bezier(.52,.21,.42,.98);
}

/* Hide scroll on mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* END OF CSS */
