/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1A232C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img, svg {
  max-width: 100%;
  display: block;
}
button {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* TYPOGRAPHY ================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17436B;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 { font-size: 1rem; }
p, li, ul, ol {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 1.2em;
}

.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17436B;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 28px;
}

/* CONTAINER & GRID SYSTEM ===================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* GENERAL SECTIONS & LAYOUT =================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

main > section:not(:last-child) {
  margin-bottom: 60px;
}

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

.text-section, .privacy-policy-text, .dsgvo-text, .cookie-policy-text, .terms-text {
  margin-bottom: 24px;
}

.text-section ul, .privacy-policy-text ul, .dsgvo-text ul, .cookie-policy-text ul, .terms-text ul, .included-features, .benefits-list, .package-options {
  padding-left: 18px;
  margin-bottom: 12px;
}
.text-section ul li, .included-features li, .benefits-list li, .package-options li {
  list-style: disc;
  font-size: 1rem;
  color: #17436B;
  margin-bottom: 8px;
}

/* FLEX PATTERN - MANDATORY ==================================== */
.feature-grid, .values-grid, .service-card-grid, .price-list, .workshop-list, .steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.card-container, .card-grid {
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F8FAFB;
  box-shadow: 0 3px 16px rgba(23, 67, 107, 0.06);
  border-radius: 14px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 250px;
}

.feature-item, .value-item, .workshop-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION ========================================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(23, 67, 107, 0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 70px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #17436B;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:focus, nav a:hover {
  background: #DCF1ED;
  color: #17436B;
}

/* MOBILE MENU ================================================= */
.mobile-menu-toggle {
  display: none;
  background: #DCF1ED;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  color: #17436B;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background 0.2s;
  z-index: 60;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #17436B;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255, 0.96);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.32,1.56,.62,1), box-shadow 0.2s;
  z-index: 100;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0px 0px 48px 12px rgba(23,67,107, 0.10);
}

.mobile-menu-close {
  font-size: 2rem;
  color: #17436B;
  align-self: flex-end;
  background: none;
  margin-bottom: 32px;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #DCF1ED;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #17436B;
  padding: 12px 0;
  border-bottom: 1px solid #EEF3F5;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #DCF1ED;
  border-radius: 8px;
  color: #17436B;
}

@media (max-width: 1020px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn.primary {
    display: none;
  }
}

/* MAIN HERO & CTA BANNER ===================================== */
.hero {
  background: #DCF1ED;
  margin-bottom: 60px;
  padding: 60px 0 50px 0;
}
.hero .container,
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  max-width: 650px;
  gap: 18px;
  align-items: flex-start;
}
.hero h1, .cta-banner h2 {
  color: #17436B;
  margin-bottom: 12px;
}
.hero .btn.primary, .cta-banner .btn.primary {
  margin-top: 22px;
}

.cta-banner {
  background: #17436B;
  color: #fff;
  padding: 48px 0 46px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 4px 32px 0 rgba(23, 67, 107, 0.07);
  margin-bottom: 50px;
}
.cta-banner h2, .cta-banner p, .cta-banner a {
  color: #fff;
}
.cta-banner .btn.primary {
  background: #fff;
  color: #17436B;
}
.cta-banner .btn.primary:hover, .cta-banner .btn.primary:focus {
  background: #F5A623;
  color: #fff;
}

/* BUTTONS & LINKS ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  background: transparent;
  border: 2px solid #17436B;
  color: #17436B;
  gap: 8px;
  transition: all 0.2s cubic-bezier(.46,1.4,.46,1);
  cursor: pointer;
}
.btn.primary {
  background: #17436B;
  color: #fff;
  border: 2px solid #17436B;
  box-shadow: 0 2px 12px rgba(23, 67, 107, 0.09);
}
.btn.primary:hover, .btn.primary:focus {
  background: #F5A623;
  color: #fff;
  border-color: #F5A623;
}
.btn.secondary {
  background: #DCF1ED;
  color: #17436B;
  border: 2px solid #DCF1ED;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #17436B;
  color: #fff;
  border-color: #17436B;
}
.btn:active {
  box-shadow: 0 1px 8px rgba(23,67,107,0.19);
}

/* CARD / ITEM COMPONENTS ====================================== */
.feature-card, .service-card, .value-item, .price-option, .workshop-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(23, 67, 107, 0.04);
  flex: 1 1 230px;
  padding: 32px 22px 28px 22px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.20s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-card img, .value-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.feature-card:hover, .service-card:hover, .value-item:hover {
  box-shadow: 0 9px 32px 0 rgba(23, 67, 107, 0.13);
  transform: translateY(-4px) scale(1.025);
}
.service-card .price, .workshop-item .date {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #F5A623;
  font-weight: 600;
}

.price-list {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.price-option {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 16px rgba(23,67,107,0.06);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 310px;
  padding: 26px 14px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.workshop-list {
  gap: 20px;
}
.workshop-item .date {
  font-size: 0.95rem;
  color: #17436B;
}

/* TESTIMONIALS ================================================ */
.testimonials {
  background: #FCFCFC;
  padding: 44px 0 36px 0;
  box-shadow: none;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #232E33;
  font-size: 1.16rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card span {
  color: #17436B;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* FAQ LIST ==================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #EEF3F6;
  border-radius: 10px;
  padding: 20px 18px 18px 18px;
  box-shadow: 0 2px 12px rgba(23, 67, 107, 0.03);
  margin-bottom: 0;
}

/* ADDRESS, CONTACT DETAILS & MAP ============================== */
.contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.address-block, .contact-details, .opening-hours, .map-embed {
  background: #FCFCFC;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(23,67,107,0.045);
  padding: 22px 16px 18px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
}
.map-embed strong {
  color: #17436B;
}

/* FOOTER ====================================================== */
footer {
  background: #EEF3F5;
  padding: 44px 0 28px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px 44px;
  justify-content: space-between;
}
.footer-logo {
  height: 36px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #17436B;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
  margin-bottom: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5A623;
}
.contact-short {
  color: #17436B;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-short a {
  color: #17436B;
  text-decoration: underline;
}
.social-media-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.social-media-links img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.18s;
}
.social-media-links img:hover, .social-media-links img:focus { opacity: 1; }

/* LEGAL PAGES STYLING ========================================= */
.legal h1 {
  font-size: 2rem;
  color: #17436B;
  margin-bottom: 20px;
}
.privacy-policy-text, .dsgvo-text, .cookie-policy-text, .terms-text {
  background: #FCFCFC;
  padding: 24px 18px 12px;
  border-radius: 14px;
  color: #232E33;
  box-shadow: 0 2px 14px rgba(23,67,107, 0.03);
  font-size: 1rem;
  line-height: 1.7;
}
.privacy-policy-text a, .dsgvo-text a, .cookie-policy-text a, .terms-text a {
  color: #17436B;
  text-decoration: underline;
}
.privacy-policy-text a:hover, .dsgvo-text a:hover, .cookie-policy-text a:hover, .terms-text a:hover {
  color: #F5A623;
}

/* STEP BY STEP CONTAINERS ===================================== */
.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.step {
  background: #F5F9FA;
  border-radius: 12px;
  padding: 20px 18px 16px 18px;
  min-width: 200px;
  max-width: 240px;
  flex: 1 1 200px;
  margin-bottom: 0;
  box-shadow: 0 2px 14px rgba(23,67,107, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/*********** THANK YOU PAGE **********/
.thank-you .content-wrapper {
  text-align: left;
  align-items: flex-start;
  gap: 14px;
  background: #FCFDFD;
  border-radius: 15px;
  padding: 44px 28px 38px;
  max-width: 520px;
  margin: 38px auto;
  box-shadow: 0 2px 28px rgba(23,67,107,0.07);
}
.thank-you-message {
  font-size: 1.15rem;
  color: #17436B;
  margin-bottom: 18px;
}
.next-steps ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}


/* MODALS / COOKIE BANNER ====================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #17436B;
  color: #fff;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 190;
  box-shadow: 0 -6px 32px rgba(23,67,107,0.13);
  animation: banner-in 0.7s cubic-bezier(.23,1.1,.22,1) 1;
}
@keyframes banner-in {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-consent-banner p {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.4;
}
.cookie-consent-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-consent-banner button {
  min-width: 110px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #fff;
  color: #17436B;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-consent-banner button.cookie-accept {
  background: #F5A623;
  color: #fff;
}
.cookie-consent-banner button.cookie-accept:hover, .cookie-consent-banner button.cookie-accept:focus {
  background: #17436B;
  color: #fff;
}
.cookie-consent-banner button.cookie-settings {
  background: #DCF1ED;
  color: #17436B;
  border: 1.5px solid #DCF1ED;
}
.cookie-consent-banner button.cookie-settings:hover, .cookie-consent-banner button.cookie-settings:focus {
  background: #F5A623;
  color: #fff;
}
.cookie-consent-banner button.cookie-reject {
  background: #fff;
  color: #17436B;
  border: 1.5px solid #fff;
}
.cookie-consent-banner button.cookie-reject:hover, .cookie-consent-banner button.cookie-reject:focus {
  background: #F5A623;
  color: #fff;
}

/* Cookie Modal Dialog */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(23,67,107,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: cookie-modal-in 0.26s cubic-bezier(.32,1.18,.52,1);
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #17436B;
  border-radius: 14px;
  padding: 40px 26px 26px 26px;
  max-width: 410px;
  min-width: 300px;
  width: 95vw;
  box-shadow: 0 6px 36px rgba(23,67,107,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modal-popup 0.42s cubic-bezier(.23,1.1,.22,1);
}
@keyframes modal-popup {
  0% { transform: scale(0.95) translateY(30px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-close-modal {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 1.5rem;
  background: none;
  color: #17436B;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  background: #DCF1ED;
}
.cookie-modal-content h3 {
  font-size: 1.2rem;
  color: #17436B;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-weight: 700;
}
.cookie-category-list {
  display: flex;
  flex-direction:column;
  gap:18px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EEF3F5;
  border-radius: 9px;
  padding: 15px 15px 14px;
  font-size: 1rem;
}
.cookie-category-item label {
  font-family:'Roboto',Arial,sans-serif;
  font-weight:500;
}
.cookie-category-toggle input[type=checkbox] {
  width:22px; height:22px; accent-color:#17436B;
}
.cookie-category-description {
  font-size:0.97rem;
  color:#45525C;
  width: 60%;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 1rem;
  background: #F5A623;
  color: #fff;
  font-weight: 700;
  border: none;
  transition: background 0.20s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #17436B;
}

/* RESPONSIVE DESIGN =========================================== */
@media (max-width: 920px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .values-grid, .service-card-grid, .price-list, .workshop-list, .steps-timeline {
    gap: 16px;
  }
  header .container {
    gap: 14px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px 8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section, main > section:not(:last-child) {
    padding: 24px 8px;
    margin-bottom: 44px;
  }
  .hero, .cta-banner {
    padding: 38px 0 30px 0;
  }
  .feature-grid, .values-grid, .service-card-grid, .price-list, .workshop-list, .steps-timeline {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .content-grid, .contact .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .address-block, .contact-details, .opening-hours, .map-embed {
    max-width: 100%;
    width: 100%;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .thank-you .content-wrapper {
    padding: 24px 8px 20px;
    margin: 18px auto;
  }
  .cookie-modal-content {
    padding: 22px 7px 16px 7px;
    min-width: 0;
    width: 96vw;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 3vw;
  }
  .section, main > section:not(:last-child) {
    padding: 12px 2vw;
    margin-bottom: 22px;
  }
  .feature-card, .service-card, .value-item, .price-option, .workshop-item {
    min-width: 0;
    max-width: 99vw;
    padding: 16px 8px 12px 10px;
  }
  .testimonials {
    padding: 12px 0 18px;
  }
  .thank-you .content-wrapper {
    padding: 12px 2vw 14px;
  }
}

/* SCROLLBAR & FOCUS-STATES ==================================== */
::-webkit-scrollbar {
  width: 7px;
  background: #F6F6F6;
}
::-webkit-scrollbar-thumb {
  background: #DCF1ED;
  border-radius: 6px;
}
a, .btn, button, input, select, textarea {
  outline-color: #17436B;
  outline-width: 2px;
  outline-style: auto;
}

/* MICRO-INTERACTIONS ========================================== */
a, .btn, button {
  transition: background 0.17s, color 0.15s, transform 0.15s;
}
.btn:active, button:active {
  transform: scale(0.97);
}
.feature-card:focus-within, .service-card:focus-within {
  box-shadow: 0 0 0 3px #DCF1ED;
}

/* Utility Classes / Helpers =================================== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/***** Z-INDEX LAYERS *****/
header { z-index: 20; }
.mobile-menu { z-index: 100; }
.cookie-consent-banner { z-index: 190; }
.cookie-modal { z-index: 200; }
/***************************************************************/
