/* =========================================================
   CSS RESET & BASE NORMALIZATION
============================================================ */
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 {
  box-sizing: border-box;
  width: 100vw;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F3F5F6;
  font-family: Arial, 'Montserrat', sans-serif;
  color: #1B232B;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #114C7D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A8541;
  outline: none;
}
ul, ol {
  padding-left: 22px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}
th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
th {
  background: #fdf6ed;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #755a13;
}

/* =========================================================
   LUXURY PREMIUM THEME VARIABLES
============================================================ */
:root {
  --lux-bg: #F3F5F6;
  --lux-primary: #114C7D;
  --lux-secondary: #1A8541;
  --lux-gold: #BFA14A;
  --lux-dark: #1B232B;
  --lux-light: #fff;
  --lux-accent: #EEEEE0;
  --lux-border: #ece8df;
  --lux-boxshadow: 0 4px 24px rgba(37, 38, 48, 0.095);
  --lux-radius: 16px;
  --lux-radius-sm: 9px;
}

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 2.25rem;
  letter-spacing: -1.5px;
  color: #1B232B;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  color: #114C7D;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.2rem;
  color: #BFA14A;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  color: #114C7D;
  margin-bottom: 12px;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #232d39;
}
strong {
  font-weight: 600;
  color: #BFA14A;
}

/* =========================================================
   PAGE CONTAINERS & GENERAL LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-light);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-boxshadow);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: var(--lux-radius-sm);
  }
}

/* =========================================================
   HEADER & NAVIGATION
============================================================ */
header {
  background: #fff;
  border-bottom: 1px solid var(--lux-border);
  box-shadow: 0 2px 12px rgba(37,38,48,0.04);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}

nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 32px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1B232B;
  padding: 5px 10px;
  border-radius: 6px;
  transition: color 0.16s, background 0.19s;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #BFA14A;
  background: #f8f5ee;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  border-radius: 28px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 34px;
  font-size: 1.1rem;
  background: var(--lux-gold);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(191,161,74,.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  margin-left: 14px;
  letter-spacing: 0.02em;
}
.cta-button.primary {
  background: var(--lux-gold);
  color: #fff;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #e0c76b;
  color: #232d39;
  box-shadow: 0 5px 16px 0 rgba(191,161,74,.16);
}

/* ---- MOBILE HAMBURGER ---- */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: var(--lux-gold);
  font-size: 2.1rem;
  display: none;
  align-items: center;
  cursor: pointer;
  z-index: 1200;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--lux-gold);
}

@media (max-width: 991px) {
  nav.main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ---- MOBILE SLIDEOUT MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18, 22, 29, 0.93);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.95,0,.08,1), opacity 0.25s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 24px 28px 12px 0;
  border: none;
  transition: color 0.2s;
  cursor: pointer;
  z-index: 2011;
}
.mobile-menu-close:focus {
  color: var(--lux-gold);
  outline: 2px solid var(--lux-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 40px 0 0 42px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 0;
  border-radius: 5px;
  min-width: 220px;
  transition: background 0.13s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--lux-gold);
  color: #232d39;
}

@media (max-width: 500px) {
  .mobile-nav {
    margin-left: 18px;
    gap: 20px;
  }
  .mobile-menu-close {
    margin: 20px 16px 10px 0;
  }
}

/* =========================================================
   HERO SECTION
============================================================ */
.hero {
  background: linear-gradient(90deg, #fff 60%, #f7f4e5 100%);
  padding: 58px 0 46px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 560px;
  gap: 20px;
}
.hero h1 {
  color: #114C7D;
  font-size: 2.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.15rem;
  color: #232d39;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 18px 0;
  }
  .hero .content-wrapper {
    padding: 0 3px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* =========================================================
   FLEX LAYOUTS & SPACING
============================================================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-boxshadow);
  padding: 30px 22px 24px 22px;
  border: 1px solid #f1ebdc;
  transition: box-shadow 0.2s, border 0.2s, transform 0.19s;
  min-width: 220px;
  position: relative;
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 8px #f6edd4);
  margin-bottom: 8px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 20px rgba(191,161,74,0.11), var(--lux-boxshadow);
  border: 1.5px solid var(--lux-gold);
  transform: translateY(-3px) scale(1.013);
}

@media (max-width:900px) {
  .features-grid {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .features-grid {
    flex-direction: column;
    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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-boxshadow);
  border: 1px solid #ede8db;
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px;
}

/* =========================================================
   CTA SECTIONS
============================================================ */
.cta-section, .cta-section .container, .cta-section .content-wrapper {
  background: linear-gradient(90deg, #faf8f3 75%, #fff8e8 100%);
  border-radius: var(--lux-radius);
  align-items: center;
}
.cta-section {
  padding-top: 38px;
  padding-bottom: 38px;
  margin: 38px 0 58px 0;
  box-shadow: 0 4px 32px 0 rgba(191,161,74,0.09);
  border: 1.5px solid #ede8db;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 15px;
}
.cta-section h2 {
  color: #BFA14A;
  margin-bottom: 4px;
}

/* =========================================================
   TESTIMONIAL/CUSTOMER QUOTES
============================================================ */
.testimonials {
  padding: 40px 0 0 0;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #BFA14A;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 2px 12px 0 rgba(191,161,74,0.03);
  border: 1.5px solid #dcd2a3;
  margin-bottom: 20px;
  max-width: 530px;
  transition: box-shadow 0.16s, border 0.16s, transform 0.14s;
  color: #29271b;
}
.testimonial-card p {
  color: #29271b;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  color: #114C7D;
  font-size: 0.99rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 14px 0 rgba(191,161,74,0.11);
  border: 1.7px solid #BFA14A;
  transform: scale(1.016);
}

/* Contrast for accessibility */
.testimonial-card, .testimonial-card p, .testimonial-card span, .testimonial-card strong {
  background: #fff;
  color: #23220c;
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    padding: 16px;
  }
}

/* =========================================================
   FOOTER
============================================================ */
footer {
  background: #fff;
  border-top: 1px solid var(--lux-border);
  margin-top: 60px;
  box-shadow: 0 -2px 12px rgba(37,38,48,0.032);
  padding-top: 24px;
  padding-bottom: 18px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.footer-logo img {
  height: 34px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.footer-nav a {
  color: #BFA14A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s, text-decoration 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #114C7D;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact span {
  color: #29271b;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  filter: grayscale(.26) brightness(1.7);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: center;
    text-align: center;
  }
  .footer-contact {
    align-items: center;
  }
}

/* =========================================================
   TEXT SECTIONS, FAQ and LISTS
============================================================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
}
.text-section ul li {
  margin-bottom: 7px;
  color: #28241c;
}
.text-section p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list .text-section {
  background: #fff;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 2px 9px 0 rgba(191,161,74,0.05);
  border: 1px solid #eddcb1;
  padding: 18px 18px 16px 18px;
  min-width: 240px;
  max-width: 520px;
  flex: 1 1 220px;
  transition: box-shadow 0.13s, border 0.11s, transform 0.14s;
}
.faq-list .text-section:hover, .faq-list .text-section:focus-within {
  border: 1.3px solid #BFA14A;
  box-shadow: 0 7px 16px 0 rgba(191,161,74,0.07);
  transform: scale(1.011);
}

@media (max-width: 900px) {
  .faq-list {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .faq-list {
    flex-direction: column;
  }
}

/* =========================================================
   TABLES (PREISE PAGE)
============================================================ */
table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(191,161,74,0.035);
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
}
tbody tr:hover {
  background: #fcf8eb;
}
th, td {
  font-size: 1rem;
}
tr:last-child td {
  border-bottom: none;
}

/* =========================================================
   BUTTONS
============================================================ */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 22px;
  background: #BFA14A;
  color: #fff;
  padding: 10px 28px;
  font-size: 1rem;
  transition: background 0.15s, color 0.13s, box-shadow 0.15s;
}
button:hover, button:focus {
  background: #e0c76b;
  color: #1B232B;
  box-shadow: 0 6px 18px 0 rgba(191,161,74,0.17);
}

/* Link buttons (e.g. .cta-button inside links) */
a.cta-button {
  display: inline-block;
  margin-top: 8px;
  box-shadow: 0 2px 14px 0 rgba(191,161,74,0.11);
  text-align: center;
}
a.cta-button:active {
  transform: scale(0.97);
}

a.cta-button:focus {
  outline: 2px solid #BFA14A;
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #fffbea 66%, #fff8e0 100%);
  box-shadow: 0 -4px 24px 0 rgba(191,161,74,0.16);
  border-top: 2.5px solid #BFA14A;
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 42px;
  justify-content: space-between;
  padding: 24px 50px;
  transition: transform 0.32s cubic-bezier(.95,0,.08,1), opacity 0.25s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  min-height: 50px;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-message {
  color: #23220c;
  font-size: 1.05rem;
  flex: 1 1 350px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner .cookie-button {
  background: #BFA14A;
  color: #fff;
  border-radius: 20px;
  padding: 10px 23px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.13s, color 0.12s, box-shadow 0.13s;
}
.cookie-banner .cookie-button.settings {
  background: #fff;
  color: #BFA14A;
  border: 1.3px solid #BFA14A;
}
.cookie-banner .cookie-button:hover, .cookie-banner .cookie-button:focus {
  background: #e0c76b;
  color: #1B232B;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 18px 5vw 18px 5vw;
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}

.cookie-modal-bg {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(27,23,10,0.67);
  z-index: 3999;
  justify-content: center;
  align-items: center;
}
.cookie-modal-bg.open {
  display: flex;
}
.cookie-modal {
  background: #fffdfa;
  padding: 34px 35px 28px 35px;
  border-radius: 18px;
  max-width: 430px;
  min-width: 300px;
  width: 90vw;
  box-shadow: 0 9px 54px 0 rgba(191,161,74,0.11);
  animation: cookieModalAppear 0.32s cubic-bezier(.76,0,.39,1);
  position: relative;
}
@keyframes cookieModalAppear {
  from {transform: translateY(36px) scale(.97); opacity: 0;}
  to   {transform: none; opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: #BFA14A;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 25px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23220c;
}
.cookie-category input[type="checkbox"] {
  accent-color: #BFA14A;
  width: 22px;
  height: 22px;
}
.cookie-category input[disabled], .cookie-category input[aria-disabled="true"] {
  accent-color: #d6d0be;
  opacity: .65;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close-modal {
  background: transparent;
  color: #BFA14A;
  font-size: 2.2rem;
  position: absolute;
  top: 10px;
  right: 13px;
  border: none;
  width: auto; height: auto;
}
.cookie-modal .cookie-close-modal:focus {
  color: #114C7D;
}

/* Accessibility fix */
.cookie-modal [role=button]:focus {
  outline: 2px solid #BFA14A;
}

/* =========================================================
   RESPONSIVE FONTS & LAYOUTS
============================================================ */
@media (max-width: 700px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .container {
    padding: 0 8px;
  }
}

/* =========================================================
   MICRO-INTERACTIONS & TRANSITIONS
============================================================ */
button, .cta-button, a.cta-button, .feature-item, .testimonial-card, .faq-list .text-section, nav.main-nav a, nav.footer-nav a, .cookie-banner .cookie-button {
  transition: background 0.17s, color 0.16s, box-shadow 0.15s, transform 0.16s, border 0.12s;
}
.feature-item:active, .testimonial-card:active, .faq-list .text-section:active {
  transform: scale(0.99);
}

/* =========================================================
   UTILITIES
============================================================ */
.lux-gold {
  color: #BFA14A !important;
}
.lux-primary {
  color: #114C7D !important;
}
.lux-secondary {
  color: #1A8541 !important;
}
.lux-bg {
  background: #F3F5F6 !important;
}
.lux-dark {
  color: #181C1F !important;
}

/* =========================================================
   OVERLAY SCROLL LOCK FOR MOBILE MENU/COOKIE MODAL
============================================================ */
body.locked {
  overflow: hidden !important;
  touch-action: none;
  height: 100vh;
}

/* =========================================================
   MISCELLANEOUS & SPACING
============================================================ */
input, select, textarea {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1B232B;
  border-radius: 9px;
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  margin-bottom: 13px;
}
input:focus, select:focus, textarea:focus {
  border-color: #BFA14A;
  outline: none;
}

/* =========================================================
   MINIMUM SPACING REQUIREMENTS
============================================================ */
main > section, .section, .card, .testimonial-card, .feature-item, .text-section, .faq-list .text-section {
  margin-bottom: 20px;
}

/* Ensure at least 20px between all cards and sections */
.card-container, .features-grid, .content-grid, .faq-list {
  gap: 20px;
}

/* Spacing fix under last element in content-wrappers */
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* END OF LUXURY PREMIUM CSS */
