/* RESET & NORMALIZE */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #fff;
  color: #1a2324;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #20727d;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #f5b041;
  text-decoration: underline;
}
ul, ol {
  margin: 1em 0;
  padding-left: 2em;
}
li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #e9f7f9;
}
th {
  background: #20727d;
  color: #fff;
  font-weight: 600;
}
tr:last-child td {
  border-bottom: none;
}
::-webkit-input-placeholder { color: #959ea0; }
::-moz-placeholder { color: #959ea0; }
:-ms-input-placeholder { color: #959ea0; }
::placeholder { color: #959ea0; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  color: #1a2324;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #20727d;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: #f5b041;
  margin-top: 10px;
  border-radius: 2px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #20727d;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, .text-section ul, .text-section ol {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #1a2324;
}
strong {
  color: #20727d;
  font-weight: bold;
}

/* CONTAINER */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(32,114,125,0.05);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.logo img {
  height: 48px;
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a2324;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  background: #20727d;
  color: #fff;
}
nav.main-nav .btn-primary {
  margin-left: 12px;
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #20727d;
  font-size: 2.2rem;
  border: none;
  padding: 8px 14px 6px 8px;
  cursor: pointer;
  z-index: 101;
  border-radius: 8px;
  transition: background .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e9f7f9;
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(26,35,36,.97);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #f5b041;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 30px 22px 16px 0;
  cursor: pointer;
  transition: color .2s;
  z-index: 201;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  width: 100%;
  padding: 0 0 36px 0;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-align: center;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover {
  background: #20727d;
  color: #f5b041;
}

/* HERO SECTION */
.hero-section {
  display: flex;
  align-items: center;
  background: #e9f7f9;
  min-height: 400px;
  padding: 60px 0 40px 0;
  position: relative;
  border-bottom: 2px solid #f5b04111;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 340px;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 650px;
}
.hero-section h1 {
  color: #1a2324;
}
.hero-section p {
  font-size: 1.2rem;
  color: #1a2324;
  margin-bottom: 8px;
}
.hero-section .btn-primary {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* FEATURES (example: index overview grid) */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
  margin-bottom: 14px;
  justify-content: flex-start;
}
.features-grid > div, .services-list > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(32,114,125,.10);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 300px;
  position: relative;
  border: 1px solid #e9f7f9;
  gap: 12px;
  margin-bottom: 20px;
  min-width: 250px;
  transition: box-shadow .23s;
}
.features-grid > div:hover, .services-list > div:hover {
  box-shadow: 0 8px 32px 0 rgba(32,114,125,.16), 0 1.5px 12px 0 #f5b04133;
}
.features-grid img, .services-list img {
  height: 42px;
  margin-bottom: 6px;
}
.features-grid h3, .services-list h2 {
  margin-bottom: 8px;
  color: #1a2324;
}
.features-grid p, .services-list p {
  font-size: 1rem;
}

/* GENERIC FLEX UTILS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(32,114,125,.09);
  padding: 20px 24px;
  flex-direction: column;
}
.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 30px 18px 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 24px 0 rgba(32,114,125,.11);
  margin-bottom: 20px;
  border-left: 4px solid #f5b041;
  max-width: 750px;
  position: relative;
  color: #222;
}
.testimonial-card blockquote {
  font-size: 1.25rem;
  color: #1a2324;
  font-style: italic;
  margin: 0;
}
.testimonial-card span { color: #20727d; font-family: 'Montserrat', Arial, sans-serif; display: block; margin-top: 8px; font-weight: 700; font-size: 1.1rem;}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  padding-left: 1.8em;
  margin-bottom: 0.5em;
}
.text-section li {
  font-size: 1.08rem;
  margin-bottom: 7px;
  color: #222;
}
.text-section img {
  height: 22px;
  margin-right: 6px;
  vertical-align: middle;
}


/* BUTTON STYLES */
.btn-primary {
  appearance: none;
  display: inline-block;
  background: #20727d;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 24px;
  padding: 13px 34px 13px 32px;
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .22s;
  box-shadow: 0 2px 12px 0 rgba(32,114,125,.06);
  letter-spacing: 0.04em;
  outline: none;
  margin-top: 15px;
  position: relative;
}
.btn-primary::after {
  content: '';
  display: inline-block;
  margin-left: 14px;
  border: solid #f5b041;
  border-width: 0 3px 3px 0;
  padding: 5px;
  transform: rotate(-45deg);
  transition: border-color .2s;
  position: relative;
  top: 3px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1a2324;
  color: #f5b041;
  box-shadow: 0 4px 20px 0 #f5b04133;
}
.btn-primary:hover::after { border-color: #fff; }

/* Success/Secondary Buttons */
.btn-secondary {
  background: transparent;
  color: #20727d;
  border: 2px solid #20727d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 24px;
  padding: 12px 30px 12px 30px;
  cursor: pointer;
  transition: background .2s, color .2s, border .2s;
  margin-top: 10px;
  margin-right: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #20727d;
  color: #fff;
  border: 2px solid #f5b041;
}
.btn-tertiary {
  background: #fff;
  color: #20727d;
  border: 2px solid #f5b041;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 22px;
  margin-right: 8px;
  cursor: pointer;
  transition: background .18s, border .18s, color .18s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #f5b041;
  color: #fff;
}

/* CONTENT WRAPPER */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 35px;
  margin-bottom: 35px;
  align-items: flex-start;
}

/* FOOTER */
footer {
  background: #1a2324;
  color: #fff;
  padding: 36px 0 26px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #f5b041;
  font-weight: 600;
  font-size: 1rem;
  transition: color .2s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #e9f7f9;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-branding img {
  height: 40px;
  margin-bottom: 8px;
}
.footer-branding span {
  color: #e9f7f9;
  font-size: .98rem;
  letter-spacing: 0.04em;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-accordion h3 {
  cursor: pointer;
  background: #e9f7f9;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1.10rem;
  color: #20727d;
  transition: background .2s, color .2s;
}
.faq-accordion h3:hover {
  background: #20727d;
  color: #fff;
}
.faq-accordion p {
  margin-top: 4px;
  margin-bottom: 0;
  padding-left: 26px;
}
.faq-contact-cta {
  background: #e9f7f9;
  border-radius: 16px;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: #fff;
  border-top: 2px solid #f5b041;
  box-shadow: 0 -4px 24px 0 rgba(32,114,125,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 28px 22px;
  min-height: 74px;
  font-size: 1rem;
  transition: transform .38s cubic-bezier(0.86,0,0.07,1);
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-tertiary {
  margin-top: 0;
  margin-bottom: 0;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(26,35,36,0.59);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .38s;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border: 2px solid #f5b041;
  border-radius: 20px;
  padding: 30px 38px;
  box-shadow: 0 6px 28px #20727d26;
  min-width: 340px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: #20727d;
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0;
}
.cookie-modal .cookie-toggle[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #f5b041;
  margin-right: 6px;
}
.cookie-modal .cookie-category.essential label {
  color: #aaa;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  pointer-events: none;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary,
.cookie-modal .btn-tertiary {
  margin-top: 14px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 950px) {
  .features-grid > div, .services-list > div {
    width: 100%;
    max-width: 400px;
  }
  footer .container {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    gap: 12px;
    min-height: 62px;
  }
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-section {
    padding: 30px 0;
    min-height: unset;
  }
  .hero-section .container {
    min-height: unset;
  }
  .content-wrapper {
    margin-top: 18px;
    margin-bottom: 18px;
    gap: 20px;
  }
  .features-grid, .services-list {
    gap: 18px;
    flex-direction: column;
    align-items: center;
  }
  .section { padding: 28px 6px; margin-bottom: 34px; }
  .testimonial-card {
    padding: 18px 10px 18px 14px;
    border-radius: 10px;
  }
  .card {
    padding: 14px 9px;
    border-radius: 8px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: .97rem;
    padding: 20px 12px;
  }
  .cookie-modal { padding: 16px 7vw; min-width: 0; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.18rem; }
  h2::after { width: 30px; height: 2px; margin-top: 7px; }
  h3 { font-size: .98rem; }
  .footer-branding img { height: 28px; }
}
@media (max-width: 420px) {
  .btn-primary, .btn-secondary, .btn-tertiary {
    font-size: .98rem;
    padding-left: 14px;
    padding-right: 14px;
  }
  .cookie-banner {
    min-height: 54px;
    padding: 15px 2px;
  }
}

/* --- Luxury Details (Shadows, Borders, Transitions) --- */
.card, .testimonial-card, .content-wrapper, .cookie-banner, .cookie-modal {
  box-shadow: 0 2.5px 12px 0 #20727d19;
}
.features-grid > div, .services-list > div {
  border: 1.5px solid #f5b04122;
}
h1, h2, .logo img {
  text-shadow: 0 1px 5px #f5b04109;
}

/* Subtle Gold Accents (Luxury) */
.features-grid > div::before,
.services-list > div::before {
  content: '';
  display: block;
  height: 3px;
  width: 36px;
  background: #f5b041;
  border-radius: 2px;
  margin-bottom: 8px;
  opacity: 0.85;
}
.features-grid > div:hover::before,
.services-list > div:hover::before {
  width: 54px;
  transition: width .28s;
}

/* Table Styling (preise.html) */
table {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 18px 0 #20727d19;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  table, th, td {
    font-size: .95rem;
    padding: 10px 7px;
  }
}

/* Accessibility & Focus Styles */
a, button, .btn-primary, .btn-secondary, .btn-tertiary {
  outline: none;
}
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .btn-tertiary:focus {
  box-shadow: 0 0 0 3px #f5b04144;
  outline: none;
}

/* Micro-interactions */
.btn-primary, .btn-secondary, .btn-tertiary,
.features-grid > div, .services-list > div,
.testimonial-card {
  transition: box-shadow .22s, background .16s, color .16s, border .18s;
}

/* Hide scrollbar in mobile menu overlay for iOS look */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar { display: none; }

/* Miscellaneous spacing and adjustments */
main {
  min-height: 70vh;
}

/* Decorative (luxury style) ornaments for logo/branding if wished */
.logo img {
  filter: drop-shadow(0 1px 0 #f5b04144);
  background: #fff6ea;
  border-radius: 12px;
  padding: 6px 12px;
  border: 1.5px solid #f5b04144;
}

/* Remove pointer events for disabled buttons */
.btn-primary[disabled], .btn-secondary[disabled], .btn-tertiary[disabled] {
  opacity: 0.7;
  background: #e9f7f9;
  color: #aaa;
  pointer-events: none;
}
