/* ================== CSS 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;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFBFC;
  color: #143147;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: #225577;
  color: #fff;
}
tr:nth-child(even) td {
  background: #E7F3FD;
}
p {
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #225577;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #225577;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 32px;
  box-shadow: 0 2px 24px 0 rgba(34,85,119,0.07);
}

/* ================== BRAND COLORS ==================== */
:root {
  --primary: #225577;
  --secondary: #E7F3FD;
  --accent: #56A7C1;
  --dark: #143147;
  --bg-light: #FAFBFC;
  --shadow: 0 2px 24px 0 rgba(34,85,119,0.1);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 10px;
  --gap-base: 20px;
  --gap-lg: 32px;
}

/* ================ CONTAINER AND LAYOUT ================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin-bottom: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 1px 8px 0 rgba(86,167,193,0.08);
  position: relative;
  transition: box-shadow 0.23s, transform 0.23s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 22px 0 rgba(34,85,119,0.18);
  transform: translateY(-4px) scale(1.015);
}
.feature-grid img {
  width: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 4px #56A7C132);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 25px 0 rgba(34,85,119,.22);
  transform: scale(1.012);
}
.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;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 12px 0 rgba(34,85,119,0.08);
  flex-direction: row;
  position: relative;
  min-width: 0;
  transition: transform .2s, box-shadow .2s;
  border-left: 9px solid var(--accent);
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 16px 0 rgba(86,167,193,0.23);
}
.testimonial-card p {
  color: #143147;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #225577;
  font-size: 0.98rem;
  font-family: 'Montserrat', sans-serif;
  margin-left: 6px;
  opacity: 0.89;
}
.testimonial-card img {
  width: 24px;
  margin-right: 3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 15px;
  background: var(--secondary);
  border-radius: var(--radius-md);
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards > div {
  flex: 1 1 280px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.service-cards > div:hover {
  box-shadow: 0 6px 30px rgba(34,85,119,0.19);
  transform: translateY(-3px);
}
.service-cards img {
  width: 50px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px #22557722);
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-list > div {
  flex: 1 1 320px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 22px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
}
.faq-list > div:hover {
  box-shadow: 0 4px 16px 0 rgba(86,167,193,0.16);
  transform: scale(1.015);
}
.trust-badges {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 20px;
}
.trust-badges img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 5px #56A7C138);
}
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-methods > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  min-width: 180px;
  font-size: 1rem;
  box-shadow: var(--shadow);
}
.contact-methods img {
  width: 30px;
  margin-bottom: 8px;
}
.map-snippet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px 0 rgba(86,167,193,0.09);
  padding: 16px 12px;
}
.map-snippet img {
  width: 50px;
}

/* =============== CTA, BUTTONS, NAVIGATION ============== */
.cta-button,
button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 1.09rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  appearance: none;
  outline: none;
  box-shadow: 0 1px 7px #56A7C144;
  transition: background 0.17s, transform 0.19s, box-shadow 0.24s;
}
.cta-button:hover, button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: #225577;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.cta-button:focus, button:focus {
  box-shadow: 0 0 0 2px #56A7C155;
}

/* Main navigation (desktop) */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  background: none;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.12rem;
  z-index: 110;
}
.main-nav a {
  color: var(--primary);
  opacity: 0.96;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.16s, opacity 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
  opacity: 1;
}
.main-nav .cta-button {
  background: var(--primary);
  color: #fff;
  margin-left: 12px;
}

/* ========== FOOTER =========== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 45px 0 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-nav a {
  color: #fff;
  opacity: .93;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.15s, opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  background: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 43px;
  margin-bottom: 8px;
}
.footer-contact p, .footer-contact span {
  color: #fff;
  opacity: 0.86;
  line-height: 1.7;
}

/* ========== MOBILE MENU =========== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  right: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 18px;
  border-radius: 14px;
  cursor: pointer;
  z-index: 121;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #56A7C1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,85,119,0.93);
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.34s cubic-bezier(.62,.01,.38,1.01);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 18px 22px 0 0;
  align-self: flex-end;
}
.mobile-nav {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  align-items: center;
}
.mobile-nav a {
  width: 90%;
  color: #fff;
  background: var(--accent);
  border-radius: 12px;
  padding: 16px 0;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-align: center;
  transition: background 0.16s, color 0.13s, transform .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: var(--primary);
  transform: scale(1.05) translateX(6px);
}
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
  .main-nav {
    gap: 14px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
  }
  .feature-grid, .service-cards, .faq-list, .card-container {
    flex-direction: column;
  }
}
@media (max-width: 820px) {
  .content-grid, .feature-grid, .service-cards, .card-container, .faq-list, .contact-methods {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 1.8rem;}
  h2 {font-size: 1.19rem;}
  .section { padding: 24px 10px; margin-bottom: 36px; border-radius: 18px; }
  .content-wrapper { margin-bottom: 20px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  header {
    position: relative;
    min-height: 56px;
    background: #fff;
    box-shadow: 0 2px 18px 0 rgba(34,85,119,0.08);
    z-index: 100;
  }
  .footer-nav { flex-direction: column; gap: 10px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .container { padding: 0 7px; }
  .cta-button, button, .mobile-menu-toggle, .mobile-menu-close {
    width: 100%; padding: 14px 8px; font-size: 1rem;
  }
  .section { padding: 10px 1px; margin-bottom: 20px; }
  h1, h2, h3 { margin-bottom: 12px; }
}

/* ============== COOKIES CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E7F3FD;
  color: #143147;
  box-shadow: 0 -2px 16px 0 rgba(34,85,119,0.11);
  z-index: 9999;
  padding: 26px 20px 16px 20px;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 16px 16px 0 0;
  animation: cookieslide 0.35s cubic-bezier(.42,0,.15,1.06) both;
}
@keyframes cookieslide {
  from {transform: translateY(108%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner .cookie-message {
  flex: 1 1 220px;
  font-weight: 500;
  color: #143147;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 20px;
}
.cookie-btn {
  padding: 10px 23px;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: background 0.18s, color 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #225577;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #225577;
  border: 1.5px solid #225577;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #225577;
  color: #fff;
}
.cookie-btn.settings {
  background: #fffbe6;
  color: #225577;
  border: 1.5px solid #56A7C1;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #56A7C1;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    padding: 20px 9px 17px 9px;
    gap: 10px;
    border-radius: 8px 8px 0 0;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions { gap: 10px; }
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 430px;
  background: #fff;
  color: #143147;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(34,85,119,0.22);
  padding: 35px 28px 28px 28px;
  z-index: 10001;
  transform: translate(-50%, -50%) scale(1);
  animation: coomodalIn .25s cubic-bezier(.77,.1,.19,.90) both;
  display: none;
  flex-direction: column;
}
.cookie-modal.active {
  display: flex;
}
@keyframes coomodalIn {
  from { opacity: 0; transform: translate(-50%, -58%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  color: #225577;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.cookie-modal .categories {
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1.06rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
.cookie-category label {
  flex-grow: 1;
}
.cookie-category input[type="checkbox"] {
  accent-color: #56A7C1;
  width: 18px; height: 18px;
}
.cookie-category input[disabled], 
.cookie-category label[data-essential='true'] {
  opacity: 0.55;
  font-style: italic;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 16px 3vw 15px 3vw;
    font-size: 0.98rem;
  }
  .cookie-modal .cookie-modal-actions { flex-direction: column; gap: 7px; }
}

/* ========== UTILITIES / ARTISTIC TOUCHES ========== */
.section {
  /* Artistic paint brush corner effect */
  position: relative;
  overflow: hidden;
}
.section:before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 200px; height: 170px;
  background: radial-gradient(rgba(86,167,193,0.16) 60%, transparent 80%);
  z-index: 0;
  pointer-events: none;
  filter: blur(7px);
}
.section:after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 210px; height: 170px;
  background: radial-gradient(rgba(34,85,119,0.11) 70%, transparent 80%);
  z-index: 0;
  pointer-events: none;
  filter: blur(7px);
}
.section > * {
  position: relative;
  z-index: 2;
}
.feature-grid > div h3,
.service-cards > div h2,
.faq-list > div h2 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  font-size: 1.16rem;
}
.cta-button {
  letter-spacing: .5px;
  font-size: 1.13rem;
  padding: 16px 30px;
  border-radius: 13px;
  background: linear-gradient(90deg, #225577 78%, #56A7C1 110%);
  box-shadow: 0 3px 12px 0 #56A7C123;
  border: none;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.23s, transform .12s;
  text-shadow: 0 2px 6px #fff9;
  margin-top: 12px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #56A7C1 20%, #225577 100%);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 7px 22px 0 #22557722;
}

/* ============ TABLES (PREISE) ============== */
table, th, td {
  border: none;
  border-radius: var(--radius-lg);
}
table {
  background: #fff;
  box-shadow: 0 1px 11px 0 rgba(86,167,193,0.07);
  border-radius: var(--radius-lg);
  margin-bottom: 22px;
  font-size: 1.07rem;
}
th {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
tr:hover td {
  background: #e0eff9;
}

/* ========== MISC/HELPERS ========== */
address {
  font-style: normal;
  color: #225577;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
a:focus-visible {
  outline: 2.5px dashed #56A7C1;
  outline-offset: 2px;
}

/* Artistic underline for section headings */
h2 {
  display: inline-flex;
  align-items: flex-end;
  position: relative;
  line-height: 1.2;
}
h2:after {
  content: '';
  display: block;
  width: 37px;
  height: 6px;
  border-radius: 15px;
  background: var(--accent);
  margin-left: 11px;
}
@media (max-width: 480px) {
  h2:after { display: none; }
}

/* Animate general cards */
.card, .feature-grid > div, .service-cards > div, .testimonial-card, .faq-list > div {
  will-change: box-shadow, transform;
  transition: box-shadow 0.21s, transform 0.21s;
}
.card:hover, .feature-grid > div:hover, .service-cards > div:hover, .faq-list>div:hover {
  z-index: 3;
  box-shadow: 0 7px 24px 0 rgba(86,167,193,0.19); 
  transform: scale(1.023) rotate(-0.7deg);
}

/* ========== Artistic and Creative Fonts =========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');
/* Used in h1/h2/h3, alternate fallback is cursive for artistic flair */

/* ========== END CSS ========== */