/* 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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: linear-gradient(135deg, #f4f2ef 0%, #e0e5e9 100%);
  color: #1b2327;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
a {
  color: #1B2327;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #79959e;
  outline: none;
}
ul, ol {
  padding-left: 24px;
}
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: #1B2327;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #1B2327;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
}
img {
  max-width: 100%;
  display: block;
}
button, .btn-primary, input[type='submit'] {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  outline: none;
  padding: 12px 32px;
  background: linear-gradient(85deg,#1b2327,#79959e );
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(27,35,39,0.08);
  transition: background 0.22s, box-shadow 0.22s, transform 0.15s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#79959e,#1b2327 );
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px 0 rgba(27,35,39,0.12);
}

/* CONTAINER STRUCTURE ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* MAIN NAVIGATION    ---------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(27,35,39,0.05);
  position: relative;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  background: transparent;
  position: relative;
}
.main-nav > a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  list-style: none;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1B2327;
  padding: 6px 15px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F4F2EF;
  color: #79959E;
}
.main-nav .btn-primary {
  margin-left: 16px;
  font-size: 1rem;
}

/* Mobile menu button */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #1b2327;
  padding: 10px 20px 10px 6px;
  margin-left: auto;
  z-index: 130;
  cursor: pointer;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #79959e;
}
@media (max-width: 980px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE SLIDE MENU ---------------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #1b2327ee;
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 30px 30px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 154;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #79959e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 40px 0 0 40px;
  gap: 26px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  color: #fff;
  background: none;
  border-radius: 16px;
  padding: 8px 16px;
  margin: 0 0 0 0;
  transition: background 0.19s, color 0.16s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #79959e;
  color: #fff;
}

/* HERO SECTIONS  ---------------------------------------- */
.hero {
  background: linear-gradient(110deg, #f4f2ef 60%, #79959e11 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 28px 0 rgba(27,35,39,0.07);
  margin-bottom: 60px;
  padding: 60px 0 46px 0 !important;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-size: 2.6rem;
  color: #1b2327;
}
.hero p {
  font-size: 1.12rem;
  color: #2f3e46;
  margin-bottom: 20px;
}
.hero .btn-primary {
  margin-top: 12px;
}

/* FEATURE LISTS ---------------------------------------- */
.features {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(27,35,39,0.025);
}
.features ul {
  list-style: disc inside;
  margin: 10px 0 0 0;
  padding-left: 16px;
  font-size: 1em;
  color: #54636a;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.features li {
  margin-bottom: 0;
  padding-left: 4px;
}
.icon-row, .category-row, .usp-icons {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-top: 14px;
}
.category-row div {
  background: #79959e21;
  color: #1b2327;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  border-radius: 14px;
  padding: 8px 18px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px #1b232701;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.trend-section {
  background: #79959e07;
  color: #79959e;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 12px;
  margin-top: 18px;
}

/* ABOUT / TEXT-SECTION ---------------------------------------- */
.about {
  background: #f4f2ef;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(27,35,39,0.02);
}
.text-section {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section h3 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 1.07rem;
  font-weight: 700;
  color: #1b2327;
}
.text-section ul {
  margin-top: 6px;
  padding-left: 22px;
}

/* SERVICES AND CARDS ---------------------------------------- */
.services {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(27,35,39,0.04);
}
.service-list, .consultant-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 16px;
}
.service-item {
  background: #f4f2ef;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(27,35,39,0.05);
  padding: 28px 24px 18px 24px;
  min-width: 210px;
  max-width: 295px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.service-item:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 36px 0 rgba(27,35,39,0.12);
  z-index: 6;
}
.service-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.service-item h3 {
  font-size: 1.07rem;
  color: #1b2327;
  margin: 0 0 4px 0;
}
.service-item p {
  font-size: 0.98rem;
  color: #54636a;
}
.service-item span {
  background: #79959e;
  color: #fff;
  border-radius: 9px;
  padding: 3px 12px;
  font-size: 0.97rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  margin-top: 4px;
}
.price-overview {
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #e0e5e9;
  color: #1b2327;
  max-width: 400px;
  line-height: 1.8;
  font-size: 0.97rem;
}

.pricing-highlights {
  margin-top: 20px;
  background: #1b2327;
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 1.07rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.customization-options {
  font-size: 1rem;
  margin-top: 8px;
  padding: 9px 18px;
  background: #79959e12;
  border-radius: 10px;
}

/**** FLEX WRAP CLASSES (as required) ************************/
.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;
  background: #f4f2ef;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(27,35,39,0.06);
  margin-bottom: 20px;
  max-width: 660px;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-family: 'Open Sans', sans-serif;
  color: #1b2327;
  border-left: 4px solid #79959e;
  padding-left: 16px;
  margin-bottom: 8px;
  line-height: 1.5;
  background: transparent;
}
.testimonial-author {
  font-size: 0.96rem;
  font-family: 'Roboto Slab', serif;
  color: #54636a;
  margin-left: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** CTA SECTION ************************/
.cta {
  background: linear-gradient(98deg,#79959e11 60%, #f4f2ef 100%);
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(27,35,39,0.03);
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.cta .btn-primary {
  min-width: 220px;
}

/**** CONTACT + ADDRESS PREVIEW SECTION ***************/
.contact-preview, .contact-overview {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(27,35,39,0.03);
  margin-bottom: 60px;
}
.contact-preview .text-section, .contact-overview .text-section {
  font-size: 1.07rem;
  color: #1b2327;
}
.contact-preview a, .contact-overview a {
  color: #79959e;
  word-break: break-all;
}

/**** FOOTER ***************************************/
footer {
  width: 100%;
  background: linear-gradient(100deg,#f4f2ef 60%, #79959e10 100%);
  color: #1b2327;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 18px 0 rgba(27,35,39,0.06);
  font-size: 1rem;
  margin-top: auto;
  padding: 34px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #79959e;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  padding: 3px 10px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #79959e;
}
.footer-info {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  margin-top: 4px;
  flex-wrap: wrap;
}
.footer-info img {
  height: 50px;
  min-width: 50px;
}
.footer-info div {
  font-size: 1rem;
  color: #2f3e46;
}
.brand-tagline {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  color: #79959e;
  margin-top: 8px;
  margin-bottom: 6px;
}

/* COOKIES CONSENT BANNER & MODAL *************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1b2327;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 30px 15px 30px 15px;
  z-index: 250;
  box-shadow: 0 -4px 22px 0 rgba(27,35,39,0.19);
  font-size: 1rem;
  animation: cookie-banner-fadein .4s cubic-bezier(.31,1.28,.25,.91);
}
@keyframes cookie-banner-fadein {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  max-width: 410px;
  margin-right: 12px;
  line-height: 1.5;
  font-size: 1.01rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Roboto Slab', serif;
  font-size: 0.98rem;
  border-radius: 22px;
  border: none;
  background: #79959e;
  color: #fff;
  font-weight: 600;
  padding: 8px 24px;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.18s, color 0.16s, transform 0.12s;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #1b2327;
  border: 1px solid #79959e;
}
.cookie-banner button.cookie-settings {
  background: #ececec;
  color: #1b2327;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #54636a;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.cookie-modal {
  position: fixed;
  z-index: 260;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #1b2327cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.31,1.18,.75,.98);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #1b2327;
  border-radius: 18px;
  padding: 34px 24px 28px 24px;
  width: 96vw;
  max-width: 400px;
  box-shadow: 0 8px 42px 0 rgba(27,35,39,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadein-cookie-modal 0.23s cubic-bezier(.43,1.41,.56,0.98);
}
@keyframes fadein-cookie-modal {
  0% { opacity: 0; transform: translateY(34px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 13px;
  font-size: 1.4rem;
  color: #79959e;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover { color: #1b2327; }
.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 3px;
}
.cookie-option label {
  font-weight: 500;
  font-size: 1.04rem;
  color: #1b2327;
}
.cookie-option input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #79959e;
  border-radius: 6px;
  position: relative;
  outline: none;
  transition: border 0.13s;
  margin-right: 4px;
  background: #fff;
  cursor: pointer;
}
.cookie-option input[type="checkbox"]:checked {
  background: #79959e;
  border-color: #79959e;
}
.cookie-option input[type="checkbox"]:checked:after {
    content: "✔";
    color: #fff;
    font-size: 1.1rem;
    position: absolute;
    left: 2px; top: 0;
}
.cookie-option.essential label {
  color: #79959e;
}
.cookie-option.essential input[type="checkbox"] {
  background: #79959e11;
  border: 2px solid #79959e;
}
.cookie-modal .cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .cookie-modal-footer button {
  background: #79959e;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 0.99rem;
  border-radius: 22px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.13s, color 0.13s, transform 0.11s;
}
.cookie-modal .cookie-modal-footer button:hover {
  background: #1b2327;
}

/**** TYPOGRAPHY SCALES & ELEMENTS *****************/
@media (max-width: 992px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.13rem; }
}

/* RESPONSIVE FLEX LAYOUTS & SPACING  *******************/
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 860px) {
  .service-list {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .main-nav {
    gap: 9px;
    padding: 11px 0;
  }
  .content-wrapper,
  .card-container,
  .category-row,
  .usp-icons,
  .icon-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .cta {
    padding: 26px 10px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 32px;
  }
  .testimonial-card, .service-item {
    max-width: 100vw;
    min-width: 0;
    padding: 18px 10px 14px 10px;
  }
  .testimonials .content-wrapper, .contact-preview .content-wrapper {
    align-items: flex-start;
  }
  .testimonials .container, .contact-preview .container {
    padding: 0 4px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 4px 18px 4px;
  }
}

/* Micro-interactions & animated hover states */
.card, .service-item, .testimonial-card, .category-row div {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .category-row div:hover {
  box-shadow: 0 10px 36px 0 rgba(27,35,39,0.14);
  transform: translateY(-2px) scale(1.01);
  position: relative;
  z-index: 11;
}
/****** Forms & Inputs (for possible future forms) *****/
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #79959e;
  border-radius: 16px;
  background: #fff;
  color: #1b2327;
  padding: 10px 16px;
  margin-bottom: 12px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1b2327;
  outline: none;
}

/****** Miscellaneous utilities *************/
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }

/****** Hide visually but keep accessible *****/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* END OF CSS */
