/* Luminous Beratung – Professional Corporate CSS Theme */
/* 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: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F9FA;
  color: #212529;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
:root {
  --primary: #0F3762;
  --secondary: #F8F9FA;
  --accent: #59B09D;
  --gray-100: #f1f3f6;
  --gray-200: #e3e7ed;
  --gray-300: #ced4da;
  --gray-600: #5B6674;
  --gray-800: #353b42;
  --error: #d94848;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
  outline: none;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.17;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  line-height: 1.22;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, details, table {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
blockquote {
  border-left: 4px solid var(--accent);
  background: var(--gray-100);
  padding: 16px 24px;
  font-style: italic;
  color: var(--gray-800);
  margin-bottom: 16px;
}
/* Containers & Sections */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 30px 0 rgba(55,93,167,0.04), 0 1.5px 7px 0 rgba(87,96,111,0.07);
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}
/* Layout helpers */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.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;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(17,35,70,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 320px;
}
@media (max-width: 600px) {
  .card {
    min-width: 100%;
    padding: 16px 10px;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/*********************
HEADER & NAVIGATION
*********************/
header {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(37, 65, 111, 0.08);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.4;
  padding: 8px 10px;
  transition: background 0.23s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
}
.cta-btn {
  background: var(--accent);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1.05rem;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.24s, box-shadow 0.22s;
  box-shadow: 0 1.5px 7px 0 rgba(70,130,110,0.11);
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #41a188;
  color: #fff !important;
  box-shadow: 0 3px 14px 0 rgba(69,140,106,0.16);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.15rem;
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #fff;
}
@media (max-width: 950px) {
  nav {
    gap: 14px;
  }
  header .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
@media (max-width: 820px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/***************************
MOBILE MENU
***************************/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform 0.43s cubic-bezier(.51,.12,.17,1.22), box-shadow 0.3s;
  box-shadow: 0 12px 32px rgba(30,60,100,0.32);
  width: 100vw;
  max-width: 360px;
  min-width: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 22px 4px 0;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
  width: 100%;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  width: 80%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  padding-left: 8px;
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
}
/********************************
SECTION: HERO, FEATURES, CARDS
********************************/
ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  font-size: 1rem;
  color: #3b4250;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section:last-child {
  margin-bottom: 0;
}
/* Feature/Service Boxes */
.content-wrapper > ul,
.content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style-type: none;
  margin: 0;
  margin-bottom: 0;
}
.content-wrapper > ul li, .content-wrapper > ol li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(13,33,67,0.075);
  padding: 22px 14px 16px 14px;
  min-width: 240px;
  flex: 1 1 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid var(--gray-200);
}
.content-wrapper > ul li:hover, .content-wrapper > ol li:hover {
  transform: translateY(-6px) scale(1.016);
  box-shadow: 0 8px 36px 0 rgba(15,55,98,0.14);
  border-color: var(--accent);
}
.content-wrapper > ul li img, .content-wrapper > ol li img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .content-wrapper > ul, .content-wrapper > ol {
    gap: 16px;
  }
  .content-wrapper > ul li, .content-wrapper > ol li {
    min-width: 180px;
    flex-basis: 45%;
    padding: 17px 9px 11px 9px;
  }
}
@media (max-width: 600px) {
  section {
    margin-bottom: 32px;
    padding: 24px 6px;
  }
  .content-wrapper > ul, .content-wrapper > ol {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper > ul li, .content-wrapper > ol li {
    min-width: 100%;
    padding: 10px 7px 10px 7px;
  }
}
/* Service Prices in Services Page */
.service-price {
  background: var(--gray-100);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 15px;
  margin-top: 6px;
  display: inline-block;
}
/********************************
  CARDS & TESTIMONIALS
********************************/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(15,55,98,0.055);
  margin-bottom: 20px;
  border-left: 8px solid var(--accent);
  flex: 1 1 320px;
  min-width: 240px;
}
.testimonial-card blockquote {
  border: none;
  background: transparent;
  color: var(--primary);
  font-size: 1.08rem;
  line-height: 1.39;
  padding: 0;
}
.testimonial-card p {
  color: var(--gray-800);
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
    padding: 14px 10px;
  }
}

/*************************************
  TABLES (Prices, Contact etc.)
*************************************/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
}
thead {
  background: var(--primary);
  color: #fff;
}
th, td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
}
tbody tr:last-child td {
  border-bottom: none;
}
tr:nth-child(even) td {
  background: var(--gray-100);
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead {
    display: none;
  }
  td {
    padding: 9px 5px;
    border: none;
    position: relative;
  }
  td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
  }
}
/********************************
  FOOTER
********************************/
footer {
  background: var(--primary);
  color: #fff;
  padding: 34px 0 0 0;
  font-size: 1rem;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  opacity: 0.90;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
  text-decoration: none;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
  opacity: 1;
  text-decoration: underline;
}
.contact-footer {
  font-size: 0.97rem;
  opacity: 0.95;
}
.contact-footer a {
  color: var(--accent);
  text-decoration: underline;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links img {
  height: 42px;
  width: auto;
}
.impressum {
  font-size: 0.9rem;
  opacity: 0.85;
  padding-top: 12px;
  padding-bottom: 14px;
}
@media (max-width: 768px) {
  footer .container {
    align-items: flex-start;
    gap: 12px;
  }
  .footer-links {
    gap: 10px;
  }
}
/******************************
   DETAILS & FAQ ACCORDIONS
******************************/
details {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(36,66,109,0.05);
  margin-bottom: 18px;
  border: 1px solid var(--gray-200);
  padding: 13px 13px 7px 18px;
  transition: border 0.2s, box-shadow 0.2s;
}
details[open] {
  box-shadow: 0 7px 24px rgba(15,55,98,0.11);
  border-color: var(--accent);
}
details summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.07rem;
  cursor: pointer;
  list-style: none;
  outline: none;
  padding-bottom: 2px;
}
details summary::-webkit-details-marker { display: none; }
details p {
  color: var(--gray-800);
  margin-top: 10px;
  margin-bottom: 8px;
}
/*******************************
  MISC ELEMENTS
*******************************/
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--gray-100);
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .map-placeholder {
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
  }
}
/********************************
  MICRO-INTERACTIONS
********************************/
button, .cta-btn, input[type="submit"] {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s, transform 0.14s;
}
button:disabled,
input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none !important;
}
section .cta-btn {
  margin-top: 12px;
}
/********************************
  COOKIE CONSENT BANNER & MODAL
********************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  border-top: 1.5px solid var(--gray-300);
  box-shadow: 0 -2px 14px rgba(22,53,98,0.13);
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 18px 16px 17px 16px;
  font-size: 1.01rem;
  transition: transform 0.3s cubic-bezier(.3,.6,.4,1.06), opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 17px;
  padding: 8px 22px;
  font-size: 1rem;
  margin-right: 6px;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  margin-bottom: 0;
}
.cookie-banner button.cookie-settings {
  background: var(--accent);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #41a188;
  color: #fff;
  box-shadow: 0 4px 15px 0 rgba(69,140,106,0.13);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #0F3762;
  color: #fff;
}
/********************************
  COOKIE CONSENT MODAL
********************************/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 3000;
  background: rgba(18,40,78,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 28px 0 rgba(24,49,98,0.17);
  padding: 40px 30px 28px 30px;
  max-width: 430px;
  width: 94vw;
  z-index: 3200;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: cookieModalAppear 0.35s;
}
@keyframes cookieModalAppear {
  0% {
    opacity: 0; transform: scale(0.98) translateY(30px);
  }
  100% {
    opacity: 1; transform: scale(1.0) translateY(0);
  }
}
.cookie-modal .modal-close-btn {
  position: absolute;
  right: 21px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--gray-600);
  cursor: pointer;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px; height: 21px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gray-200);
  transition: background 0.18s;
  border-radius: 12px;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 15px; width: 15px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 5px 0 rgba(10,18,50,0.13);
  transition: transform 0.24s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(17px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal-actions button {
  border-radius: 17px;
  background: var(--primary);
  color: #fff;
  font-size: 0.97rem;
  border: none;
  padding: 7px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal-actions button.secondary {
  background: var(--accent);
  color: #fff;
}
.cookie-modal-actions button:hover {
  background: #41a188;
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 20px 7vw 22px 7vw;
    max-width: 98vw;
  }
  .cookie-banner {
    padding: 12px 4px 10px 4px;
    gap: 12px;
    font-size: 0.98rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner .cookie-banner-actions {
    gap: 10px;
  }
}
/*********************************************
  FORM ELEMENTS (Contact, Cookie Modal etc.)
*********************************************/
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  border: 1.3px solid var(--gray-300);
  border-radius: 9px;
  padding: 11px 10px;
  font-size: 1rem;
  margin-bottom: 13px;
  transition: border 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  outline: none;
}
label {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 500;
}
/*********************************************
  Error states (if any error/notification UI)
*********************************************/
.input-error {
  border-color: var(--error);
}
.error-message {
  color: var(--error)!important;
  background: #fbeaea;
  padding: 6px 13px;
  font-size: 0.99rem;
  border-radius: 6px;
  margin-bottom: 10px;
}
/*********************************************
  Utility Classes
*********************************************/
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 8px !important;
}
.mb-2 {
  margin-bottom: 16px !important;
}
.text-center {
  text-align: center !important;
}
.flex {
  display: flex !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.align-center {
  align-items: center !important;
}
.justify-center {
  justify-content: center !important;
}
/*********************************************
  Responsive Typography
*********************************************/
@media (max-width: 880px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  h3 {
    font-size: 1.01rem;
  }
  body, p, ul, ol, table {
    font-size: 0.97rem;
  }
  .cta-btn, nav a, .mobile-nav a {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.17rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .cta-btn {
    font-size: 0.98rem;
    padding: 8px 16px;
  }
}
/*********************************************
  Accessibility: Focus states
*********************************************/
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
/*********************************************
  Print Styles (Basic)
*********************************************/
@media print {
  nav, header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    display: none !important;
  }
  body, main, section, .container {
    color: #222;
    background: #fff;
  }
}
