/* ===================================
   CSS RESET & BASE STYLES
=================================== */
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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8FAFC;
  color: #183046;
  font-family: "Open Sans", Georgia, 'Times New Roman', Times, serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #18436A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #56A2B4;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #18436A;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.2; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.3; margin-bottom: 20px; }
h3 { font-size: 1; line-height: 1.4; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p, li, span, label {
  font-family: 'Open Sans', Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: #23405A;
  line-height: 1.7;
}
strong, b { font-weight: 600; }
/* ===================================
   BRAND COLORS
=================================== */
:root {
  --primary: #18436A;
  --secondary: #56A2B4;
  --accent: #F2F6FB;
  --neutral-bg: #F8FAFC;
  --text-main: #183046;
  --text-contrast: #23405A;
  --muted: #C6CFDB;
  --shadow: rgba(24,67,106,0.08);
}
/* ===================================
   LAYOUT & CONTAINERS
=================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
main {
  min-height: 60vh;
  padding-bottom: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral-bg);
  border-radius: 18px;
  box-shadow: 0 4px 32px var(--shadow);
}
/* For all main sections, e.g., .hero, .policy */
.hero, .policy, .thank-you-message {
  background: var(--accent);
  border-radius: 22px;
  padding: 52px 0 48px 0;
  margin-bottom: 60px;
  box-shadow: 0 8px 40px var(--shadow);
}
.hero h1, .policy h1, .thank-you-message h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p, .policy p, .thank-you-message p {
  font-size: 1.15rem;
  color: var(--text-contrast);
  max-width: 580px;
}
/* ===================================
   NAVIGATION & HEADER
=================================== */
header {
  background: #fff;
  border-bottom: 1px solid var(--muted);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
/* Main navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  color: var(--secondary);
}
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 1.02rem;
  font-family: 'Montserrat', Georgia, serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.18s, transform 0.14s, box-shadow 0.18s;
  outline: none;
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 12px var(--shadow);
}
.mobile-menu-toggle {
  background: var(--primary);
  border-radius: 7px;
  color: #fff;
  font-size: 1.9rem;
  padding: 4px 15px;
  border: none;
  display: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1022;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.68,0.16,0.26,1.01);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 26px rgba(24,67,106,0.12);
  padding-top: 28px;
  padding-bottom: 36px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--primary);
  background: transparent;
  border: none;
  align-self: flex-end;
  margin-right: 26px;
  margin-bottom: 18px;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-left: 38px;
}
.mobile-nav a {
  font-size: 1.28rem;
  font-family: 'Montserrat', Georgia, serif;
  color: var(--primary);
  font-weight: 600;
  padding: 9px 0;
  transition: color 0.18s;
  cursor: pointer;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}
/* Show/hide nav menu on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ===================================
   FLEXBOX CONTENT GRIDS
=================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px var(--shadow);
  padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-3px) scale(1.017);
}
.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;
    align-items: flex-start;
    gap: 22px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--shadow);
  background: #fff;
  min-width: 288px;
  max-width: 440px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
}
.testimonial-card p {
  color: #18436A;
  font-style: italic;
  font-size: 1.06rem;
}
.testimonial-card span {
  color: #23405A;
  font-weight: 500;
  font-size: 0.98rem;
}
.feature-item, .feature, .benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 22px 18px 20px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.feature:hover, .benefit:hover {
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-2px);
}
/* ================================
   FEATURE / SERVICE GRIDS
================================ */
.feature-grid, .service-grid, .benefit-list, .pricing-tables, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature, .service, .benefit, .pricing-card, .team-member {
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 330px;
}
.pricing-tables {
  margin-top: 10px;
  margin-bottom: 14px;
}
.pricing-card {
  padding: 36px 24px 28px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 14px var(--shadow);
  border: 1px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-2px) scale(1.017);
}
/* ================================
   FAQ & ACCORDION
================================ */
.faq-accordion, .faq-list-short {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 {
  font-size: 1.15rem;
  color: var(--primary);
  cursor: pointer;
  background: #F2F6FB;
  transition: background 0.18s;
  padding: 11px 16px;
  border-radius: 6px;
}
.faq-item h3:hover { background: #E0EAF2; }
.faq-item div {
  padding: 13px 18px 11px 18px;
  background: #fff;
  color: var(--text-contrast);
  font-size: 0.98rem;
  border-radius: 0 0 6px 6px;
  border: 1px solid #E0EAF2;
  border-top: none;
}
.popular-questions ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  gap: 7px;
  display: flex;
  flex-direction: column;
}
.popular-questions li {
  font-size: 0.96rem;
  color: var(--primary);
}
/* ================================
   TRUST SIGNALS
================================ */
.trust-signals {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  color: var(--secondary);
  font-size: 1.05rem;
}
.trust-signals img {
  height: 27px;
  width: 27px;
  margin-right: 4px;
}
/* ================================
   SPECIAL CONTENT LISTS
================================ */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.service-item:hover {
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-2px);
}
.included-services ul, .individual-vs-business ul {
  border-left: 3px solid var(--secondary);
  margin-left: 12px;
  padding-left: 17px;
}
.included-services h4 {
  color: var(--primary);
  margin-top: 16px;
}
/* ================================
   TEAM GRID
================================ */
.team-list {
  gap: 28px;
  align-items: stretch;
  margin-bottom: 18px;
}
.team-member {
  padding: 28px 16px 22px 16px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 9px var(--shadow);
  color: var(--text-contrast);
  margin-bottom: 20px;
  min-width: 210px;
}
.team-member h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.team-member p {
  font-size: 1rem;
  color: #23405A;
}
/* ================================
   FOOTER
================================ */
footer {
  background: #fff;
  border-top: 1px solid var(--muted);
  padding: 42px 0 16px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-content > a img { height: 48px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  position: relative;
}
.footer-nav a:before {
  content: '\2192';
  color: var(--primary);
  margin-right: 7px;
  font-size: 1rem;
  opacity: 0.5;
}
.footer-nav a:hover {
  color: var(--primary);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details div, .contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--text-contrast);
}
.contact-details a {
  color: var(--primary);
}
.contact-details a:hover {
  text-decoration: underline;
}
/* ===================================
   FORMS / MISC CTA
=================================== */
input, textarea, select {
  background: #fff;
  border: 1px solid #C6CFDB;
  border-radius: 6px;
  font-size: 1rem;
  padding: 10px 12px;
  margin-bottom: 14px;
  transition: border 0.15s;
  width: 100%;
  color: #23405A;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid var(--secondary);
}
label {
  font-family: 'Montserrat', Georgia, serif;
  color: #18436A;
  margin-bottom: 4px;
  font-weight: 500;
}
/* ===================================
   RESPONSIVE DESIGN (Mobile-first)
=================================== */
@media (max-width: 1000px) {
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.3rem;}
  .hero, .policy, .thank-you-message {
    padding: 32px 0 32px 0;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .service-list, .feature-grid, .service-grid, .pricing-tables, .team-list, .benefit-list {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-slider, .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-signals {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}
/* ===================================
   SLIDER for Testimonials (Basic)
=================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 10px;
}
/* ===================================
   CALENDAR BLOCK (Kontakt)
=================================== */
.calendar-integration {
  margin-top: 18px;
  background: var(--accent);
  padding: 16px 20px;
  border-radius: 9px;
  color: var(--primary);
  font-size: 1rem;
}
.map-address {
  margin-top: 12px;
  font-size: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 16px 19px;
  box-shadow: 0 2px 12px var(--shadow);
}
/* ===================================
   COOKIE CONSENT BANNER
=================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 24px var(--shadow);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px 16px 20px;
  gap: 22px;
  animation: fadein-bottom 0.38s;
}
@keyframes fadein-bottom {
  from {transform: translateY(60px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  max-width: 450px;
  color: var(--text-main);
  font-size: 1rem;
}
.cookie-btn-group {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Georgia, serif;
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1rem;
  color: #fff;
  background: var(--primary);
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner .cookie-btn-settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-btn-reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .cookie-btn-reject:hover,
.cookie-banner .cookie-btn-reject:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: #fff;
}
/* ================= COOKIE MODAL ================== */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  z-index: 2100;
  background: #fff;
  border-radius: 15px;
  width: 97vw;
  max-width: 390px;
  box-shadow: 0 12px 80px rgba(24,67,106,0.23);
  padding: 32px 24px 20px 24px;
  animation: popup-in 0.26s cubic-bezier(0.42,0,0.32,1.24);
  opacity: 1;
}
@keyframes popup-in {
  from { opacity:0; transform: translate(-50%, -42%) scale(0.95); }
  to   { opacity:1; transform: translate(-50%, -50%) scale(0.98); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #e0eaf2;
  border-radius: 18px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal .cookie-switch:checked {
  background: var(--secondary);
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: transform 0.22s;
}
.cookie-modal .cookie-switch:checked:before {
  transform: translateX(18px);
}
.cookie-modal .category-desc {
  font-size: 0.96rem;
  color: #23405A;
  opacity: 0.8;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal .modal-actions button {
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 1rem;
  border: none;
}
.cookie-modal .modal-actions .cookie-btn-cancel {
  background: #fff;
  color: var(--primary);
  border: 1.2px solid var(--primary);
}
.cookie-modal .modal-actions .cookie-btn-cancel:hover,
.cookie-modal .modal-actions .cookie-btn-cancel:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .essential {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 19px; top: 7px;
  font-size: 1.5rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--secondary);
}
.cookie-modal .category-label {
  font-weight: 600;
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 16px 5vw 16px 5vw;
  }
  .cookie-modal h2 {
    font-size: 1.07rem;
  }
}
/* ===================================
   UTILITIES
=================================== */
.gap-20 { gap: 20px !important; }
.mr-10 { margin-right: 10px !important; }
.mt-10 { margin-top: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.text-center { text-align: center !important; }
.text-muted { color: #C6CFDB; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
/* ===================================
   ANIMATIONS & MICRO-INTERACTIONS
=================================== */
.card, .feature, .benefit, .pricing-card, .service-item, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.15s, background 0.18s;
}
.cta-btn, .cookie-banner button, .modal-actions button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.17s;
}
.cta-btn:active, .cookie-banner button:active, .modal-actions button:active {
  transform: scale(0.98);
}
/* ===================================
   SCROLLBAR STYLING
=================================== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: #C6CFDB;
  border-radius: 7px;
}
/* ===================================
   MISC FIXES & IMPROVEMENTS
=================================== */
[tabindex]:focus { outline: 2px solid var(--secondary); outline-offset: 3px; }
.card-container > *:last-child,
.feature-grid > *:last-child, .service-grid > *:last-child, .benefit-list > *:last-child,
.team-list > *:last-child, .testimonial-slider > *:last-child, .service-list > *:last-child {
  margin-bottom: 0 !important;
}
/* FORBIDDEN CSS: No grid, no column-count/columns */