/* ===== RESET & BASE ===== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background: #FAF6F0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #22423C;
  background: #FCFBF8;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
a {
  color: #35736B;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.5,1,.89,1);
}
a:hover,
a:focus {
  color: #8CBDA2;
}

button,
input[type="submit"],
input[type="button"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  border-radius: 7px;
  border: 1.5px solid #EAE6DF;
  padding: 10px 14px;
  background: #fff;
  color: #22423C;
  margin-bottom: 16px;
  transition: border 0.24s;
}
input:focus,
select:focus,
textarea:focus {
  border: 1.5px solid #35736B;
  outline: none;
}

/* ===== FONTS & HEADINGS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, .hero h1 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 2.5rem;
  color: #22423C;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(34,66,60,0.06);
  letter-spacing: -1px;
  line-height: 1.12;
}
h2 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 2rem;
  color: #35736B;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
h3 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.315rem;
  font-weight: 700;
  color: #22423C;
  margin-bottom: 12px;
}
.hero p, h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #39443e;
}
p, li, label {
  font-size: 1rem;
}

/* ===== CONTAINERS & SECTIONS ===== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(53,115,107,0.08);
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FAF6F0;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(53,115,107,.07);
  padding: 24px;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 280px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.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;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(91deg, #EAE6DF 70%, #8CBDA2 150%);
  padding: 60px 0 40px 0;
  border-radius: 0 0 40px 40px/0 0 25px 25px;
  margin-bottom: 46px;
  box-shadow: 0 12px 28px rgba(134,196,176,.10);
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 750px;
  margin: 0 auto;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.hero p {
  color: #22423C;
  font-size: 1.22rem;
  margin-bottom: 20px;
}

/* ===== NAVIGATION ===== */
header {
  background: #22423C;
  box-shadow: 0 3px 15px rgba(53,115,107,0.14);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}
header img {
  height: 48px;
  max-width: 170px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 14px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1rem;
  position: relative;
  transition: color 0.18s, background 0.10s;
  padding: 6px 11px;
  border-radius: 14px;
}
.main-nav a:hover {
  color: #35736B;
  background: #fff0;
  background-color: #EAE6DF;
}
.btn.primary {
  background: #8CBDA2;
  color: #22423C;
  font-family: 'Montserrat', cursive, sans-serif;
  padding: 11px 26px;
  border-radius: 22px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px rgba(53,115,107, .09);
  border: none;
  transition: background 0.22s, color 0.13s, box-shadow 0.2s;
  margin-left: 28px;
}
.btn.primary:hover, .btn.primary:focus {
  background: #35736B;
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(34,66,60,0.11);
}

/* ===== BURGER & MOBILE MENU ===== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #8CBDA2;
  font-size: 2.1rem;
  padding: 10px 13px;
  border-radius: 8px;
  display: none;
  transition: background 0.18s;
  margin-left: 11px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EAE6DF;
  color: #35736B;
  outline: none;
}

.mobile-menu {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #22423C;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 64px rgba(34,66,60,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #8CBDA2;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color 0.18s, background 0.1s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.19rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  padding: 13px 12px 13px 4px;
  border-radius: 12px;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover {
  background: #8CBDA2;
  color: #22423C;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 13px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
  }
  .btn.primary {
    margin-left: 10px;
  }
  header .container {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 10px;
  }
  header img {
    height: 36px;
    max-width: 120px;
  }
  .hero .container {
    flex-direction: column;
  }
  .hero {
    padding: 38px 0 22px 0;
  }
}

/* ====== SERVICES & CARDS ====== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0;
  justify-content: center;
}
.service-card {
  flex: 1 1 220px;
  background: #EAE6DF;
  color: #22423C;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(89,151,146,0.12);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 210px;
  max-width: 340px;
  transition: transform 0.20s, box-shadow 0.24s;
  border: 2.5px solid transparent;
  margin-bottom: 20px;
}
.service-card:hover, .service-card:focus-within {
  background: #FCC;
  border-color: #8CBDA2;
  box-shadow: 0 8px 24px rgba(89,151,146,0.15);
  transform: translateY(-7px) scale(1.03) rotate(-2deg);
}
.service-card h3 {
  font-family: 'Montserrat', cursive, sans-serif;
  color: #35736B;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.service-card b {
  color: #22423C;
}

/* ====== TESTIMONIALS ====== */
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FDF8F4;
  border-left: 8px solid #8CBDA2;
  border-radius: 22px 4px 22px 4px;
  box-shadow: 0 3px 14px rgba(53,115,107,0.085);
  font-size: 1.02rem;
  min-width: 230px;
  color: #22423C;
  transition: box-shadow 0.22s, border-color 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(53,115,107,0.16);
  border-color: #35736B;
}
.testimonial-card b {
  color: #35736B;
  font-size: 1.08em;
}
.testimonial-card p {
  flex: 1;
  line-height: 1.42;
  color: #22423C;
}

/* ====== PRICING ====== */
.pricing-info {
  background: #8CBDA2;
  color: #fff;
  border-radius: 18px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 12px rgba(89,151,146,0.11);
  font-size: 1.25rem;
  justify-content: center;
  margin: 24px 0 0 0;
  font-family: 'Montserrat';
  font-weight: 700;
}

/* ====== DETAILS + SUMMARY (FAQ) ====== */
details {
  margin-top: 16px;
  margin-bottom: 16px;
  background: #EAEEED;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 7px rgba(53,115,107,0.065);
}
details summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  cursor: pointer;
  color: #22423C;
  font-size: 1.13rem;
  margin-bottom: 6px;
}
details p {
  margin-left: 8px;
  margin-top: 7px;
}

/* ====== FOOTER ====== */
footer {
  background: #22423C;
  color: #fff;
  padding: 36px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  margin-top: 7px;
}
.footer-nav a {
  color: #8CBDA2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: #EAE6DF;
}
.footer-contact {
  color: #FFFFFF;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 8px;
}
footer img {
  height: 42px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding-bottom: 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
}

/* ====== CONTACT BLOCK ====== */
.contact-block {
  background: #EAE6DF;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 7px rgba(53,115,107,0.07);
  color: #22423C;
}
.contact-block a {
  color: #35736B;
  font-weight: 700;
}

/* ====== THANK YOU PAGE ====== */
.thank-you-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #F4FFFB;
  padding: 30px 20px;
  border-radius: 22px;
  margin-top: 20px;
  box-shadow: 0 3px 14px rgba(53,115,107,0.10);
}
.thank-you-message p {
  font-size: 1.12rem;
}

/* ====== ARTISTIC & CREATIVE ELEMENTS ====== */
h1, h2, h3 {
  text-transform: none;
  line-height: 1.15;
}
section {
  position: relative;
  overflow: visible;
}
section:not(.hero):after {
  content: '';
  position: absolute;
  z-index: 0;
  top: -30px;
  right: 24px;
  width: 95px;
  height: 50px;
  background: rgba(140,189,162,0.099);
  border-radius: 80px 30px 90px 30px;
  transform: rotate(17deg);
  pointer-events: none;
}
section:not(.hero):before {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: -24px;
  left: 12px;
  width: 50px;
  height: 30px;
  background: rgba(53,115,107,.070);
  border-radius: 40px 22px 0 0;
  transform: rotate(-15deg);
  pointer-events: none;
}

@media (max-width: 540px) {
  .section {
    padding: 20px 5px;
    margin-bottom: 38px;
  }
  .service-card, .card {
    min-width: 160px;
    max-width: 100%;
    padding: 13px 12px;
    font-size: 0.99rem;
  }
  .hero h1 { font-size: 1.5rem; }
}

/* ====== FORM ELEMENTS (if any) ====== */
input[type="search"] {
  width: 100%;
  max-width: 430px;
  margin: 24px auto 0 auto;
  display: block;
  background: #fff;
  border: 2.7px solid #8CBDA2;
  font-size: 1.08rem;
  border-radius: 22px;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  color: #22423C;
  box-shadow: 0 2px 10px rgba(53,115,107,0.07);
  outline: none;
  transition: border 0.2s;
}
input[type="search"]:focus {
  border-color: #35736B;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 190;
  background: #F5EDE2;
  color: #22423C;
  box-shadow: 0 -2px 16px rgba(53,115,107,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 22px 28px 22px 22px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  justify-content: space-between;
  opacity: 1;
  transition: opacity 0.24s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  outline: none;
  transition: background 0.14s, color 0.12s;
}
.cookie-banner .accept {
  background: #8CBDA2;
  color: #22423C;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #35736B;
  color: #fff;
}
.cookie-banner .reject {
  background: #E5766F;
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #BD2A12;
}
.cookie-banner .settings {
  background: #EAE6DF;
  color: #22423C;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #FCC;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    font-size: 0.98rem;
    align-items: flex-start;
    padding: 16px 10px 16px 10px;
  }
  .cookie-banner .cookie-btns {
    gap: 11px;
  }
}

/* ====== COOKIE SETTINGS MODAL ====== */
.cookie-modal {
  position: fixed;
  z-index: 200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,66,60,.77);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 26px;
  padding: 44px 26px 28px 26px;
  max-width: 400px;
  box-shadow: 0 12px 64px rgba(34,66,60,0.16);
  color: #22423C;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookiePop 0.52s cubic-bezier(.77,0,.18,1);
}
@keyframes cookiePop {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-option label {
  font-weight: 500;
  font-size: 1.06rem;
  color: #35736B;
}
.cookie-option input[type="checkbox"] {
  accent-color: #8CBDA2;
  width: 18px;
  height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #8CBDA2;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover,{ .cookie-modal-close:focus {
  color: #35736B;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 90px;
}

/* ====== MISC ====== */
p, ul, ol {
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 10px;
}
b, strong {
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 11px;
  background: #EAE6DF;
}
::-webkit-scrollbar-thumb {
  border-radius: 13px;
  background: #B1D2C2;
}

/* ====== RESPONSIVE: FLEX ONLY! ====== */
@media (max-width: 1000px) {
  .services-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .services-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    padding: 12px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}

/* ====== VISUAL ACCESSIBILITY ====== */
.testimonial-card, .testimonial-card p, .testimonial-card b {
  background: #FDF8F4;
  color: #22423C;
}

/* ====== ANIMATIONS ====== */
.btn,.service-card,.testimonial-card,.mobile-menu,.cookie-banner,.cookie-modal-content {
  transition: all 0.23s cubic-bezier(.22,1,.36,1);
}
.service-card {
  transition: box-shadow 0.22s, transform .23s, background 0.13s, border-color 0.16s;
}

/* ENDE */
