/* ===== CSS RESET & NORMALIZATION ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, 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;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #1b1b1b;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A375D;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #111;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button:focus {
  outline: 2px solid #1A375D;
  outline-offset: 2px;
}

/* ===== BRAND TYPE ===== */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: #383838;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
}
.text-section h2, .text-section h3 {
  margin-top: 16px;
}
.small {
  font-size: 0.92em;
  color: #555;
}

/* ===== CONTAINER & LAYOUT UTILS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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 24px 0 rgba(36,36,38,0.06);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 42px 0 rgba(24,24,24,0.11);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(60,60,64,0.06);
  margin-bottom: 20px;
  border: 1.5px solid #eee;
  min-width: 240px;
  max-width: 420px;
}
.testimonial-meta {
  font-size: 0.96em;
  font-style: italic;
  color: #222;
}
.star-rating, .star-ratings, .star-rating-overview {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 1.5px;
}
.star-rating-overview strong, .star-ratings strong {
  color: #1b1b1b;
}


/***** HEADER STRUCTURE *****/
header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.07em;
  color: #222;
  background: transparent;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EEE;
  color: #1A375D;
}
.cta-button {
  background: #1A375D;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.07em;
  border-radius: 8px;
  padding: 10px 24px;
  margin-left: 18px;
  box-shadow: 0 2px 16px 0 rgba(30,40,57,0.10);
  text-decoration: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: #22292F;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(23,40,77,0.13);
  outline: 2px solid #222;
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 6px;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e3e6ea;
  color: #1A375D;
  z-index: 120;
  cursor: pointer;
  transition: background 0.15s, border 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e3e6ea;
  color: #111;
}

/***** MOBILE MENU *****/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,34,37,0.94);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.79,.09,0,.99);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin-left: auto;
  margin-top: 16px;
  margin-right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 215;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.08);
}
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E6E6EA;
  background: rgba(163,187,214,0.05);
}

/***** HERO SECTION *****/
.hero {
  background: #fff;
  padding: 52px 0 46px 0;
  border-bottom: 2.5px solid #e4e7eb;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  min-height: 165px;
}
.hero h1 {
  color: #1A375D;
  font-size: 2.4rem;
}
.hero p {
  font-size: 1.12em;
  color: #2D2D30;
  margin-bottom: 18px;
  font-weight: 400;
}

/* ==== FEATURES / SERVICE CARDS ==== */
.feature-grid, .service-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-card, .service-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 20px 0 rgba(28,28,35,0.09);
  padding: 26px 18px;
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1px solid #eee;
}
.feature-card:hover, .service-card:hover {
  box-shadow: 0 6px 32px 0 rgba(40,40,48,0.14);
  transform: translateY(-6px) scale(1.017);
}
.feature-card img, .service-card img {
  height: 44px;
  width: 44px;
}
.feature-card h3, .service-card h3 {
  color: #1A375D;
  margin-top: 7px;
}
.feature-card p, .service-card p {
  color: #36363A;
  font-size: 1em;
}
.service-card ul, .feature-card ul {
  margin-left: 18px;
  color: #444;
}

/***** TABLES (PRICE TABLE) *****/
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 26px 0;
  box-shadow: 0 2px 20px 0 rgba(30,30,32,0.06);
  background: #fafcfd;
  border-radius: 12px;
  overflow: hidden;
}
.price-table thead {
  background: #1A375D;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.price-table th, .price-table td {
  padding: 15px 13px;
  border-bottom: 1px solid #eee;
}
.price-table th {
  font-size: 1.13em;
  text-align: left;
  letter-spacing: 0.04em;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/***** FAQ & ACCORDION *****/
.faq-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.faq-item {
  background: #f6f7f8;
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 1px 9px 0 rgba(30,30,36,0.06);
  border: 1.5px solid #ececec;
  min-width: 210px;
}
.faq-item h3 {
  margin-bottom: 5px;
  color: #1A375D;
  font-weight: 600;
  font-size: 1.13em;
}
.faq-item p {
  color: #27272B;
  font-size: 1em;
}

/***** TESTIMONIALS/LIST *****/
.testimonial-slider, .testimonial-list {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.star-rating-overview, .star-ratings {
  margin-top: 12px;
}

/***** TEAM MEMBERS (About) *****/
.team-member-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.team-member-bios > div {
  background: #f8f9fa;
  padding: 18px;
  border-radius: 11px;
  border: 1px solid #e0e0e1;
  flex: 1 1 265px;
  min-width: 220px;
}

/***** MAP EMBED, ADDRESS BLOCK (Kontakt) *****/
.address-block, .map-embed, .contact-information {
  background: #f8fafd;
  border-radius: 10px;
  padding: 18px 15px;
  border: 1px solid #e6e6e8;
  margin-bottom: 20px;
  color: #232425;
}
.address-block h3 {
  color: #1A375D;
  margin-bottom: 5px;
}

/***** CONFIRMATION & NEXT STEP (Thank You) *****/
.confirmation-text, .next-steps-info {
  background: #f9fafb;
  border-radius: 8px;
  padding: 14px 14px 10px 14px;
  margin: 10px 0 18px 0;
  border: 1px solid #ececec;
}

/***** FOOTER *****/
footer {
  background: #23242B;
  color: #fff;
  padding: 38px 0 30px 0;
  border-top: 1.5px solid #20222B;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo img {
  max-width: 70px;
}
.footer-contact {
  font-size: 0.98em;
  color: #e6eaea;
}
.footer-contact a {
  color: #68B8C4;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #eee;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  text-decoration: none;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #68B8C4;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(35,36,39,0.97);
  color: #fff;
  z-index: 3100;
  padding: 24px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 28px 0 rgba(24, 22, 24, 0.11);
  animation: cookieBannerSlideUp 0.5s cubic-bezier(.86,.21,.04,1.01);
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(160px); opacity:0 }
  to   { transform: translateY(0); opacity:1 }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1em;
  border-radius: 7px;
  border: none;
  padding: 10px 22px;
  box-shadow: 0 1px 8px 0 rgba(16,16,19,0.09);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-accept {
  background: #1A375D;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #22292f;
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #23242B;
  border: 1.4px solid #1A375D;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #ececec;
  color: #1A375D;
}
.cookie-settings {
  background: #68B8C4;
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #4399a9;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,42,58,0.55);
  z-index: 3700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #223;
  border-radius: 14px;
  max-width: 95vw;
  width: 400px;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 8px 60px 0 rgba(33,33,44,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalFade .42s cubic-bezier(.43,.18,0,1);
}
@keyframes cookieModalFade {
  from {opacity:0; transform:translateY(22px) scale(1.04);}
  to   {opacity:1; transform:translateY(0) scale(1);}
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #e6e6e8;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.05em;
  color: #1A375D;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #1A375D;
}
.cookie-modal-action-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  border-radius: 50%;
  border: none;
  color: #222;
  font-size: 1.6em;
  background: #f3f7fb;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: -12px;
  margin-top: -24px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eaecf2;
}

/* === SCROLLBAR MONOCHROME STYLE === */
body::-webkit-scrollbar {
  width: 11px;
  background: #fafbfc;
}
body::-webkit-scrollbar-thumb {
  background: #c2c6cc;
  border-radius: 7px;
  border: 2px solid #fafbfc;
}

/***** RESPONSIVE DESIGN ***** */
@media (max-width: 1020px) {
  .container {max-width: 98vw;}
  .feature-grid, .service-listings, .team-member-bios {
    gap: 16px;
  }
  .footer-flex {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .header-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px){
  body {font-size: 15px;}
  h1, .h1 {font-size: 1.65rem;}
  h2, .h2 {font-size: 1.2rem;}
  .hero {
    padding: 38px 0 36px 0;
  }
  .feature-grid, .service-listings, .testimonial-slider, .testimonial-list, .team-member-bios, .footer-flex {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-card, .service-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .footer-flex {
    align-items: flex-start;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-button {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    max-width: 290px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}
@media (max-width: 520px){
  .container {padding-left: 11px; padding-right: 11px;}
  .section {padding: 28px 7px;}
  .hero {padding: 26px 0 18px 0;}
  .cookie-modal {width: 98vw; min-width: 0;}
  .cta-button {font-size: 0.99em;}
}

/* ===== MICROINTERACTIONS / TRANSITIONS ===== */
.cta-button, .feature-card, .service-card, .testimonial-card, .price-table, .faq-item, .cookie-btns button {
  transition: box-shadow 0.2s, background 0.19s, color 0.18s, transform .13s;
}
.cta-button:active {transform: scale(0.97);}
.feature-card:active, .service-card:active, .testimonial-card:active {transform: scale(0.99);}

/****** SPACING HELPERS ******/
.mt-1{margin-top: 8px !important;} .mt-2{margin-top: 16px !important;}
.mt-3{margin-top: 24px !important;} .mt-4{margin-top: 32px !important;}
.mb-1{margin-bottom: 8px !important;} .mb-2{margin-bottom: 16px !important;}
.mb-3{margin-bottom: 24px !important;} .mb-4{margin-bottom: 32px !important;}

/**** LISTS & DETAILS ****/
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 7px;
}

/**** MISC UTILS (HR, HIDE, Z-STACKING) ****/
hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 22px 0;
}
.hide {display: none !important;}
.z-900 {z-index: 900 !important;}
.z-4000 {z-index:4000 !important;}

/* ===== VISUALLY DISTINGUISHED (MONOCHROME SOPHISTICATION) ===== */
.section, .content-wrapper, .card, .feature-card, .service-card, .faq-item, .testimonial-card, .footer-logo, .cookie-modal {
  box-shadow: 0 1px 9px 0 rgba(36,36,38,0.07);
  border-radius: 12px;
}

/***** CUSTOM SCROLL FOR IN-CONTENT WRAPPERS *****/
.testimonial-slider, .testimonial-list {
  overflow-x: auto;
  scrollbar-color: #c2c6cc #fafbfc;
  scrollbar-width: thin;
}

/***** VISUAL ACCESSIBILITY: CONTRAST FOR TESTIMONIAL SECTIONS *****/
.testimonial-card, .testimonial-card p, .testimonial-meta {
  color: #171718;
  background: #fafbfc;
}
.star-rating, .star-rating-overview, .star-ratings {
  color: #ffa600;
  filter: drop-shadow(0px 1px 1px #fff);
}

/***** ELEVATED INTERACTIVE SHADOWS (hover/focus) *****/
.feature-card:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 6px 28px 0 rgba(40,40,48,0.16);
  border-color: #d0d5e0;
}

/***** FOCUS VISIBLE (ACCESSIBILITY) *****/
.cta-button:focus, .main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus, .cookie-btns button:focus, .cookie-modal-close:focus {
  outline: 2.5px solid #1A375D;
  outline-offset: 3px;
  background: #f4f5f8;
}

/***** MONOCHROME BRAND COLORS UTILITIES *****/
.bg-monochrome-primary {background: #1A375D !important; color: #fff !important;}
.bg-monochrome-accent {background: #F2F6F8 !important; color: #1A375D !important;}
.text-monochrome-primary {color: #1A375D !important;}
.text-monochrome-dark {color: #171718 !important;}
.text-monochrome-gray {color: #444 !important;}
section {
  padding: 20px 0;
}
/* END OF CSS */
