/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FDF6E3;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #355C7D;
  text-decoration: none;
  transition: color 0.22s;
}
a:hover, a:focus {
  color: #F8B195;
}
:focus {
  outline: 2px solid #F8B195;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #355C7D;
  margin-bottom: 18px;
  line-height: 1.15;
}
h1 {
  font-size: 2.2rem;
  font-weight: 700;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

/* FLEXBOX MANDATORY CLASSES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(248, 177, 149, 0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(53,92,125,0.10), 0 1.5px 6px rgba(248,177,149,0.10);
  padding: 24px;
  min-width: 250px;
  flex: 1 1 300px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 8px 24px rgba(53,92,125,0.13), 0 8px 24px rgba(248,177,149,0.10);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F8B195;
  color: #26304a;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(53,92,125,0.12);
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #26304a;
  font-style: italic;
}
.testimonial-card span {
  font-weight: 600;
  color: #355C7D;
  font-size: 0.98rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 14px;
  background: #FDF6E3;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(248,177,149,0.03);
}

/* HERO */
.hero {
  background: linear-gradient(110deg, #FDF6E3 60%, #F8B195 100%);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: 0 4px 18px rgba(248,177,149,0.18);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}
.hero h1 {
  color: #355C7D;
  font-size: 2.4rem;
}
.hero p {
  color: #355C7D;
  font-size: 1.18rem;
  margin-bottom: 12px;
}

/* BUTTONS */
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  background-color: #355C7D;
  color: #fff;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(53,92,125,0.07);
  margin-top: 8px;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.22s, transform 0.16s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F8B195;
  color: #26304a;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 24px rgba(248,177,149,0.12), 0 1px 4px rgba(53,92,125,0.09);
}

/* HEADER & NAV */
header {
  background: #fff;
  border-bottom: 2px solid #F8B195;
  box-shadow: 0 2px 6px 0 rgba(248,177,149,0.07);
  position: sticky;
  top: 0;
  z-index: 980;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #355C7D;
  border-radius: 18px;
  padding: 7px 16px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F8B195;
  color: #26304a;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #355C7D;
  cursor: pointer;
  display: none;
  border-radius: 50%;
  transition: background 0.18s;
  padding: 6px 10px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F8B195;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px rgba(53,92,125,0.21);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.6,0.07,0.38,0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F8B195;
  color: #26304a;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 6px 13px;
  margin-left: 18px;
  margin-bottom: 18px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(248,177,149,0.18);
  transition: background 0.19s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #355C7D;
  color: #fff;
  transform: scale(1.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  color: #355C7D;
  padding: 10px 0;
  border-radius: 12px;
  min-width: 180px;
  margin-bottom: 5px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8B195;
  color: #26304a;
}

/* HERO, FEATURES, ABOUT PREVIEW, etc. */
.features, .about-preview, .services-preview, .services, .benefits, .values, .why-us, .info, .gallery-intro, .before-after, .contact-details, .contact-form, .terms, .privacy, .gdpr, .cookie-policy, .thank-you, .team {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(248,177,149,0.07);
}

.features h2, .about-preview h2, .services-preview h2, .services h1, .benefits h2, .values h2, .why-us h2, .info h2, .gallery-intro h1, .before-after h2, .contact-details h1, .contact-form h2,
.privacy h1, .gdpr h1, .cookie-policy h1, .terms h1, .thank-you h1, .team h1 {
  color: #355C7D;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 28px;
}
.feature-grid li {
  background: #FDF6E3;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(248,177,149,0.03);
  padding: 24px 18px 20px 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 210px;
  transition: box-shadow 0.17s, transform 0.11s;
}
.feature-grid li img {
  max-width: 40px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 6px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px rgba(248,177,149,0.13);
  transform: translateY(-2px) scale(1.02);
}
/* CTA */
.cta {
  display: flex;
  align-items: center;
  background: #F8B195;
  border-radius: 28px;
  box-shadow: 0 4px 28px 0 rgba(248,177,149,0.13);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta h2 {
  color: #355C7D;
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.contact-info-short {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.contact-info-short img {
  vertical-align: middle;
  margin-right: 8px;
  max-width: 20px;
}

/* TABLES (Preisliste) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  margin-bottom: 30px;
  border-radius: 18px;
  overflow: hidden;
  font-size: 1rem;
}
thead {
  background: #355C7D;
  color: #fff;
}
thead th {
  padding: 14px 10px;
}
td, th {
  padding: 12px 10px;
  text-align: left;
}
tbody tr {
  background: #FDF6E3;
  border-bottom: 1px solid #F8B195;
  color: #333;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody td {
  font-size: 0.98rem;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 2px solid #F8B195;
  box-shadow: 0 -2px 8px 0 rgba(248,177,149,0.04);
  padding: 36px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  align-items: center;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
footer img {
  max-width: 54px;
  margin-bottom: 6px;
}
footer p {
  color: #355C7D;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #355C7D;
  font-size: 1rem;
  padding: 5px 14px;
  border-radius: 12px;
  transition: background 0.16s;
}
.footer-nav a:hover {
  background: #F8B195;
}

/* MISC & TYPOGRAPHY */
strong {
  font-weight: 600;
  color: #355C7D;
}
blockquote {
  font-style: italic;
  color: #355C7D;
  margin: 18px 0;
  padding-left: 16px;
  border-left: 4px solid #F8B195;
}

/* LISTS in info/values/why-us */
.values ul, .why-us ul, .info ul, .contact-details ul, .contact-form ul, .services ul, .benefits ul {
  list-style: disc inside circle;
  margin-left: 0;
  padding-left: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

/* Galerie highlights */
.before-after ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
.before-after ul li {
  padding: 12px 0;
  border-bottom: 1px solid #F8B195;
}
.before-after ul li:last-child {
  border-bottom: none;
}

/* THANK-YOU PAGE */
.thank-you {
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(53,92,125,0.07);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #F8B195;
  color: #26304a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 26px 24px 30px 24px;
  z-index: 99999;
  box-shadow: 0 -4px 20px rgba(53,92,125,0.16);
  font-size: 1rem;
  animation: bannerSlideUp 0.7s cubic-bezier(.72,.01,.32,.94);
}
@keyframes bannerSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  box-shadow: 0 2px 8px 0 rgba(53,92,125,0.06);
  margin-top: 4px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: #355C7D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #355C7D;
  border: 1px solid #355C7D;
}
.cookie-btn.reject {
  background: #fff;
  color: #F8B195;
  border: 1px solid #F8B195;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F8B195;
  color: #26304a;
}
.cookie-btn.settings {
  background: #FDF6E3;
  color: #355C7D;
  border: 1px solid #355C7D;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #355C7D;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(53,92,125,0.22);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  padding: 30px 36px;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(248,177,149,0.18), 0 1.5px 6px rgba(53,92,125,0.10);
  max-width: 380px;
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalFadeIn 0.7s cubic-bezier(.55,.02,.48,.99);
}
@keyframes modalFadeIn {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-dialog h2 {
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: #355C7D;
  font-weight: 500;
}
.cookie-category input[type="checkbox"]:disabled+label {
  opacity: 0.56;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 20px;
  background: #F8B195;
  color: #355C7D;
  font-size: 1.35rem;
  border: none;
  border-radius: 50%;
  padding: 0 8px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #355C7D;
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .main-nav {
    gap: 12px;
  }
  .footer-nav {
    gap: 10px;
  }
  .feature-grid {
    gap: 14px;
  }
  .team-info {
    padding: 0 2px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .section, .features, .about-preview, .services-preview, .services, .benefits, .values, .why-us, .info, .gallery-intro, .before-after, .contact-details, .contact-form, .terms, .privacy, .gdpr, .cookie-policy, .thank-you, .team {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  header .container {
    flex-direction: row;
    gap: 6px;
    padding-top: 4px; padding-bottom: 4px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    padding: 12px 22px;
    font-size: 0.99rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .cta {
    padding: 28px 8px;
    flex-direction: column;
    border-radius: 20px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    padding: 16px 10px;
    font-size: 1rem;
  }
  .card {
    padding: 16px;
    min-width: unset;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav {
    gap: 5px;
  }
  footer .content-wrapper {
    gap: 12px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.10rem;
  }
  .feature-grid li, .testimonial-card, .about-preview, .services-preview, .cta, .section {
    padding: 14px 6px;
    border-radius: 12px;
  }
  .cookie-modal-dialog {
    padding: 18px 8px;
    border-radius: 14px;
  }
}
/* END OF CSS */
