/* ---------------- CSS RESET & BASE STYLES ----------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(135deg, #FFE9BC 0%, #86B6C6 100%);
  min-height: 100vh;
  color: #385C6B;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #385C6B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #35617e;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.3em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4 {
  font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
  color: #385C6B;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.18; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

strong, b {
  font-weight: 700;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* ---------------- HEADER & NAVIGATION ----------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(56,92,107,.04);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Raleway', Arial, sans-serif;
  color: #385C6B;
  font-size: 1rem;
  padding: 8px 4px;
  transition: color 0.18s;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #86B6C6;
  border-bottom: 2px solid #86B6C6;
}

.cta-btn {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(96deg, #FFE9BC, #86B6C6 100%);
  color: #385C6B;
  border: none;
  border-radius: 28px;
  padding: 12px 36px;
  margin-left: 18px;
  box-shadow: 0 2px 12px 0 rgba(56,92,107,0.08);
  cursor: pointer;
  transition: background 0.24s, color 0.18s, box-shadow 0.15s;
  outline: none;
  display: inline-block;
  letter-spacing: 0.03em;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(96deg, #86B6C6 60%, #FFE9BC 120%);
  color: #274551;
  box-shadow: 0 6px 32px 0 rgba(136,182,198,0.12);
}
button.cta-btn {
  box-shadow: none;
}

.mobile-menu-toggle {
  background: #FFE9BC;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #385C6B;
  cursor: pointer;
  margin-left: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1002;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #86B6C6;
  color: #fff;
}
/* ------------- MOBILE MENU -------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: linear-gradient(120deg, #FFE9BC 0%, #86B6C6 100%);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.9,0,.4,1);
  z-index: 2001;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -2px 0 16px 0 rgba(56,92,107,.15);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #385C6B;
  font-size: 2.2rem;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2002;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding: 60px 32px 32px 40px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Raleway', Arial, sans-serif;
  color: #385C6B;
  font-weight: 700;
  transition: color 0.18s, background 0.16s;
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #86B6C6;
  color: #fff;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 880px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  header .container {
    gap: 12px;
    padding: 0 14px;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* ---------------- SECTION BASES ----------------- */
.section,
.hero,
.features,
.about,
.services-preview,
.testimonials,
.contact-mini,
.about-details,
.philosophy,
.services-list,
.features-benefits,
.service-cta,
.knowledge-list,
.service-recommendations,
.cta-consultation,
.contact-details,
.benefits,
.legal,
.prices-table,
.quality-benefits,
.cta-offer,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 28px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/* Feature Section */
.features .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(56,92,107,0.06);
  padding: 26px 24px 22px 24px;
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 6px 28px 0 rgba(56,92,107,0.14);
  transform: translateY(-4px) scale(1.02);
}
.feature-item img {
  width: 44px;
  margin-bottom: 5px;
}
.feature-item h3 {
  font-size: 1.13rem;
  margin-bottom: 0.4em;
}

@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

/* ---- SERVICE CARDS / GRIDS ---- */
.services-preview .services-grid,
.services-list .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card, .service-entry {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(56,92,107,0.07);
  border-radius: 18px;
  padding: 26px 24px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 222px;
}
.service-card:hover, .service-entry:hover {
  box-shadow: 0 8px 32px 0 rgba(56,92,107,0.18);
  transform: translateY(-3px) scale(1.015);
}
.service-price, .service-entry span {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.12rem;
  color: #385C6B;
  font-weight: 700;
  margin-top: 12px;
  background: #FFE9BC;
  border-radius: 14px;
  padding: 5px 12px;
  align-self: flex-start;
}

.services-list .service-entry {
  margin-bottom: 22px;
  gap: 2px;
}

@media (max-width: 900px) {
  .services-preview .services-grid,
  .services-list .services-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-card, .service-entry {
    min-width: 0;
    width: 100%;
  }
}

/********* TESTIMONIALS ***********/
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 5px 28px 0 rgba(56,92,107,0.10);
  transition: box-shadow 0.18s, transform 0.15s;
  color: #385C6B;
  max-width: 620px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px 0 rgba(86,182,198,0.16);
  transform: scale(1.017);
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  color: #385C6B;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  font-size: 1rem;
  color: #385C6B;
  font-weight: 600;
  opacity: 0.94;
}
/* Ensure readable text */
.testimonials .testimonial-card,
.testimonial-card p, .testimonial-meta {
  background: #fff;
  color: #274551;
}

/********* BREADCRUMB ***********/
.breadcrumb {
  font-size: 1rem;
  color: #86B6C6;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.breadcrumb a {
  color: #86B6C6;
  text-decoration: underline;
}
.breadcrumb a:hover { color: #385C6B; }

/********* PRICES TABLE **********/
.prices-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(56,92,107,0.05);
  font-size: 1rem;
}
.prices-table th, .prices-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #F4F7FA;
}
.prices-table th {
  background: #86B6C6;
  color: #fff;
  font-size: 1.06rem;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
}
.prices-table tr:last-child td {
  border-bottom: none;
}
.price-notes p {
  background: #FFE9BC;
  padding: 12px 18px;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 1rem;
  color: #385C6B;
}

/******** CARDS **********/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(56,92,107,0.06);
  padding: 20px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(134,182,198,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/******** CONTACT DETAILS & BLOCKS *********/
.address-block {
  background: #fff;
  border-radius: 13px;
  padding: 18px 24px;
  box-shadow: 0 2px 14px 0 rgba(134,182,198,.08);
  margin-bottom: 16px;
  color: #385C6B;
}

/********* BENEFITS & ICONS **********/
.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 22px 0;
}
.benefit-icons > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(56,92,107,0.08);
  padding: 18px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  gap: 8px;
}
.benefit-icons img {
  width: 32px;
}

/********* USP-LIST *********/
.usp-list li {
  padding-left: 0.75em;
  margin-bottom: 0.6em;
  position: relative;
}
.usp-list li:before {
  content: '\2022';
  color: #86B6C6;
  font-size: 1.2em;
  position: absolute;
  left: -1em;
  top: 0.25em;
}

/********* FOOTER ***********/
footer {
  background: #385C6B;
  color: #fff;
  padding: 40px 0 16px 0;
  box-shadow: 0 -2px 16px 0 rgba(56,92,107,.05);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #FFE9BC;
  font-size: 1.03rem;
  font-family: 'Raleway', Arial, sans-serif;
  margin-bottom: 8px;
  transition: color 0.17s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-socials img {
  width: 32px;
  height: 32px;
}
.site-credits {
  flex: 1;
  display: flex;
  align-items: flex-end;
  font-size: 0.94rem;
  opacity: 0.83;
  margin-top: 18px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .site-credits {
    margin-top: 8px;
  }
}

/********* PHILOSOPHY HIGHLIGHTS *********/
.competence-highlights {
  background: #86B6C6;
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 10px;
}
.competence-highlights p {
  margin-bottom: 0;
}

/********* QUICK TIPS *********/
.quick-tips {
  background: #FFE9BC;
  color: #385C6B;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 12px 0 18px 0;
}
.faq-teasers {
  background: #fff;
  color: #385C6B;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 10px 0 0 0;
  box-shadow: 0 1px 7px 0 rgba(56,92,107,0.06);
}

/********* TIP/RECOMMEND --------*/
.tip {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(134,182,198,0.085);
  padding: 14px 22px;
  margin-bottom: 16px;
}

/********* THANK YOU PAGE ***********/
.thank-you {
  background: linear-gradient(128deg, #FFE9BC 0%, #fff 100%);
  text-align: center;
  border: 2px solid #FFE9BC;
  border-radius: 28px;
}
.thank-you h1 {
  color: #385C6B;
  font-size: 2.34rem;
  margin-bottom: 0.6em;
}
.thank-you a.cta-btn {
  margin: 22px auto 0 auto;
  display: inline-block;
}

/********* LEGAL PAGES ********/
.legal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(56,92,107,0.04);
  color: #385C6B;
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 1.1em;
}

/********* SPACING *********/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/********* AUXILIARY *********/
.contact-snippet p {
  font-size: 1.06rem;
  margin: 12px 0 0 0;
}

/****** MODALS, BANNERS, & ANIMATIONS ******/
/* --------------- COOKIE BANNER --------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(92deg, #FFE9BC 60%, #86B6C6 100%);
  color: #385C6B;
  box-shadow: 0 -5px 32px 0 rgba(56,92,107,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 5000;
  padding: 24px 18px 22px 18px;
  font-size: 1rem;
  animation: banner-in 0.7s cubic-bezier(.8,0,.2,1);
}
@keyframes banner-in {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
#cookie-banner .cookie-message {
  flex: 1 1 300px;
  max-width: 420px;
  font-size: 1rem;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 22px;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.14s;
}
.cookie-btn.accept {
  background: #385C6B;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #274551;
}
.cookie-btn.reject {
  background: #fff;
  color: #385C6B;
  border: 2px solid #385C6B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFE9BC;
  color: #274551;
}
.cookie-btn.settings {
  background: #86B6C6;
  color: #fff;
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #385C6B;
  color: #fff;
}
@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 5px 18px 9px;
  }
  #cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* ---------- COOKIE PREFERENCES MODAL ---------- */
#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(56,92,107,0.22);
  backdrop-filter: blur(2.5px);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal 0.4s;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal {
  width: 97%;
  max-width: 430px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 rgba(56,92,107,0.18);
  padding: 32px 30px 24px 30px;
  z-index: 5200;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-slidein 0.44s cubic-bezier(0.7,0,0.25,1);
}
@keyframes modal-slidein {
  from {transform: translateY(80px) scale(0.96); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
#cookie-modal h2 {
  color: #385C6B;
  font-size: 1.38rem;
  margin-bottom: 1em;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #385C6B;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 40px;
  background: #EFEFEF;
  position: relative;
  outline: none;
  border: none;
  margin-left: 8px;
  transition: background 0.15s;
}
.cookie-toggle[aria-checked="true"] {
  background: #86B6C6;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.22s;
}
.cookie-toggle[aria-checked="true"]::before {
  left: 19px;
}
.cookie-toggle[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
#cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/************ SECTION COLORS & BACKGROUNDS ************/
.hero {
  background: linear-gradient(116deg, #FFE9BC 70%, #fff 98%);
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 54px 22px 62px 22px;
  min-height: 300px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 40px 0 rgba(134,182,198,0.09);
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.14rem;
  max-width: 520px;
}

@media (max-width: 768px) {
  .hero {
    padding: 36px 10px 40px 10px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/************ RESPONSIVE LAYOUTS ************/
@media (max-width: 600px) {
  .section, .hero, .about, .about-details, .features, .services-preview, .testimonials,
  .contact-mini, .philosophy, .services-list, .features-benefits, .service-cta,
  .knowledge-list, .service-recommendations, .cta-consultation,
  .contact-details, .benefits, .legal, .prices-table, .quality-benefits, .cta-offer, .thank-you {
    padding: 16px 3vw;
    margin-bottom: 34px;
    border-radius: 16px;
  }
}
@media (max-width: 416px) {
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/********* ANIMATIONS, HOVERS, MICROINTERACTIONS ************/
a, .cta-btn, button, .cookie-btn, .service-card, .feature-item, .card {
  transition: background 0.18s, color 0.16s, box-shadow 0.14s, border-color 0.14s, transform 0.17s;
}

/********* FOCUS VISIBLE ************/
:focus-visible {
  outline: 2px solid #86B6C6;
  outline-offset: 2px;
}

/********* SCROLLBAR (Modern Look) ************/
body::-webkit-scrollbar {
  width: 12px;
  background: #EFEFEF;
}
body::-webkit-scrollbar-thumb {
  background: #86B6C6;
  border-radius: 8px;
}

/******* FORM INPUTS (for possible future contact forms) *******/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #86B6C6;
  border-radius: 7px;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: #fff;
  color: #385C6B;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #385C6B;
}

/********* HIDE SKIP-LINKS and ONLY-VISIBLES *********/
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute;
}

/********** MISC **********/
hr {
  border: none;
  border-top: 1px solid #ECECEC;
  margin: 22px 0;
}

/************** END OF STYLE.CSS **************/
