/* ----------------- CSS RESET & 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F5F6FA;
  color: #18202b;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background: none;
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}
* {
  box-sizing: border-box;
}

/* ------------------- BRAND VARIABLES ------------------- */
:root {
  --color-primary: #214169;
  --color-secondary: #D9B267;
  --color-accent: #F5F6FA;
  --color-text: #18202b;
  --color-bg: #F5F6FA;
  --color-white: #fff;
  --color-black: #101629;
  --color-contrast: #1D2534;
  --color-shadow: rgba(33,65,105,0.08);
}

/* ------------- TYPOGRAPHY: Modern Bold ------------- */
h1, .hero h1 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}
h2 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}
h3 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
}
p, ul, li, ol, table, small {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
small {
  font-size: 0.98rem;
  color: var(--color-black);
}
a {
  transition: color 0.18s cubic-bezier(.4,.05,.18,1);
  color: var(--color-primary);
  font-weight: 600;
}
a:hover, a:focus {
  color: var(--color-secondary);
}

/* ----------- GENERAL CONTAINERS/SPACING ----------- */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 3px 18px var(--color-shadow);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(33,65,105,0.17);
  z-index: 1;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
  border-left: 6px solid var(--color-secondary);
  max-width: 460px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(217, 178, 103, 0.16);
  transform: translateY(-3px) scale(1.02);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 18px 16px;
  margin-bottom: 20px;
  min-width: 210px;
}

/*********** HERO SECTION ***********/
.hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 56px 0 44px 0;
  border-radius: 0 0 38px 38px;
  margin-bottom: 44px;
  box-shadow: 0 7px 40px rgba(33,65,105,0.13);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 8px;
}
.hero h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.hero p {
  color: var(--color-accent);
  font-size: 1.12rem;
}
.hero .cta-primary {
  margin-top: 8px;
}

/*********** NAVIGATION & HEADER ***********/
header {
  position: relative;
  background: var(--color-white);
  box-shadow: 0 2px 14px var(--color-shadow);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
}
header img[alt="Dokuvita Dortmund"] {
  height: 44px;
  width: auto;
  margin: 10px 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 10px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  margin-right: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2.5px solid var(--color-secondary);
}

.cta-primary {
  font-family: 'Merriweather', 'Roboto', sans-serif;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 100px;
  font-weight: 900;
  font-size: 1.07rem;
  padding: 10px 32px;
  margin-left: 8px;
  box-shadow: 0 3px 22px rgba(217,178,103,0.08);
  letter-spacing: 0.5px;
  border: none;
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.14s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 8px 36px rgba(217,178,103,0.17);
  transform: translateY(-2px) scale(1.03);
}
.cta-primary:active {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/*********** MOBILE MENU ***********/
.mobile-menu-toggle {
  display: none;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 2.1rem;
  padding: 5px 17px;
  border-radius: 9px;
  border: 2px solid var(--color-accent);
  transition: background 0.18s, color 0.18s, border 0.14s;
  z-index: 112;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.72,.01,.21,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: var(--color-secondary);
  border-radius: 50%;
  padding: 12px 12px 8px 12px;
  margin: 32px 26px 8px 0;
  position: relative;
  z-index: 130;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  gap: 22px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--color-white);
  font-family: 'Merriweather', serif;
  font-weight: 800;
  padding: 12px 0;
  margin: 0 8px;
  width: 100%;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.14s, background 0.16s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(217,178,103,0.13);
  border-bottom: 2.5px solid var(--color-secondary);
}

/*********** FEATURES & CARDS ***********/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 8px;
}
.feature {
  background: var(--color-white);
  box-shadow: 0 2px 14px var(--color-shadow);
  border-radius: 15px;
  padding: 22px 18px 27px 18px;
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 3px solid transparent;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
}
.feature:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 36px rgba(33,65,105,0.15);
  transform: translateY(-4px) scale(1.025);
}
.feature img {
  height: 42px;
  margin-bottom: 6px;
  filter: brightness(1.1);
}
.feature h3 {
  margin-bottom: 5px;
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 700;
}
.feature .price {
  color: var(--color-secondary);
  font-size: 1.04rem;
  margin-top: 6px;
  font-weight: 700;
}

/*********** TABLES (Preise) ***********/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 16px 0;
  background: var(--color-white);
  box-shadow: 0 2px 14px var(--color-shadow);
  border-radius: 14px;
  overflow: hidden;
}
thead {
  background: var(--color-secondary);
}
th, td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
}
th {
  font-weight: 800;
  color: var(--color-primary);
}
tbody tr {
  border-top: 2px solid var(--color-accent);
}
tbody td {
  color: var(--color-text);
}
tbody tr:hover {
  background: rgba(217,178,103,0.07);
}

/******** CONTACT INFO & CTAs ********/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: none;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 14px;
}
.contact-info img {
  width: 22px; height: 22px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.contact-options, .value-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}
.value-promises ul, .quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

/*********** FOOTER ***********/
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 42px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-white);
}
.footer-nav a, .footer-legal a {
  color: var(--color-secondary);
  transition: color 0.18s;
  font-weight: 700;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  color: var(--color-accent);
}
.footer-contact img {
  width: 20px;
  margin-right: 6px;
  filter: brightness(1.2);
  vertical-align: middle;
}
.footer-contact {
  font-size: 0.98rem;
  line-height: 1.7;
}

/*********** FAQ ACCORDION ***********/
.faq-section {
  width: 100%;
  margin-bottom: 8px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 18px 20px;
  position: relative;
  cursor: pointer;
  min-width: 200px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 8px 23px rgba(217,178,103,0.16);
  transform: scale(1.01);
}
.faq-item h3 {
  font-size: 1.1rem;
  font-family: 'Merriweather', serif;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-item div {
  font-size: 1.02rem;
  color: var(--color-contrast);
}

/*********** TESTIMONIAL CARD STARS ***********/
.stars {
  font-size: 1.13rem;
  color: var(--color-secondary);
  letter-spacing: 2.5px;
  margin-bottom: 2px;
}

/*********** MISC UI ELEMENTS ***********/
.text-section ul, .text-section ol {
  padding-left: 18px;
  margin-top: 6px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.text-section ul li, .text-section ol li {
  font-size: 1rem;
  padding-left: 7px;
  position: relative;
}
.text-section ul li::before {
  content: '\25A0'; /* solid square */
  color: var(--color-secondary);
  font-size: 0.7rem;
  margin-right: 9px;
  position: absolute;
  left: -16px;
  top: 3px;
}
.text-section ol {
  counter-reset: step;
}
.text-section ol li {
  counter-increment: step;
  padding-left: 26px;
}
.text-section ol li::before {
  content: counter(step) '.';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.1rem;
}
.text-section a {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: underline;
}

/*********** QUICK LINKS (FAQ) ***********/
.quick-links li {
  margin-bottom: 4px;
}
.quick-links a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.01rem;
  transition: color 0.17s;
}
.quick-links a:hover{
  color: var(--color-secondary);
}

/*********** ANIMATIONS ***********/
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0.1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(40px);
    opacity: 0.1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*********** COOKIE CONSENT BANNER ***********/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 -4px 18px rgba(33,65,105,0.13);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  gap: 14px;
  animation: slide-up 0.4s cubic-bezier(.4,.01,.23,.99);
}
.cookie-banner p {
  font-size: 0.97rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.cookie-btn-group .cookie-btn {
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 800;
  border-radius: 21px;
  outline: none;
  border: none;
  transition: background 0.16s, color 0.11s;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(217,178,103,0.11);
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}
.cookie-btn.settings {
  background: none;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/*********** COOKIE MODAL ***********/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(16,22,41,0.45);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 16px;
  box-shadow: 0 4px 40px var(--color-shadow);
  min-width: 320px;
  max-width: 95vw;
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slide-up 0.36s cubic-bezier(.4,.01,.24,1);
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.28rem;
  margin-bottom: 3px;
  color: var(--color-primary);
  font-family: 'Merriweather', serif;
  font-weight: 800;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 7px;
  align-items: center;
}
.cookie-category label {
  font-weight: 700;
  color: var(--color-primary);
}
.cookie-category .cookie-toggle {
  width: 34px;
  height: 22px;
  border-radius: 19px;
  background: var(--color-accent);
  position: relative;
  transition: background 0.13s;
  display: inline-block;
}
.cookie-category .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-category .slider {
  position: absolute;
  left: 3px; top: 3px;
  background: var(--color-secondary);
  height: 16px;
  width: 16px;
  border-radius: 50%;
  transition: left 0.16s, background 0.17s;
}
.cookie-category .cookie-toggle input:checked ~ .slider {
  background: var(--color-primary);
  left: 15px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 14px; top: 14px;
  font-size: 1.45rem;
  background: none;
  color: var(--color-primary);
  border-radius: 6px;
  padding: 6px 8px;
  border: 2px solid transparent;
  transition: background 0.16s, color 0.14s, border 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

/*********** RESPONSIVE DESIGN ***********/
@media (max-width: 1140px) {
 .container {
   max-width: 100vw;
 }
}
@media (max-width: 992px) {
  .main-nav {
    gap: 16px;
  }
  .feature-grid {
    gap: 17px;
  }
  .footer-contact {
    font-size: 0.96rem;
  }
}
@media (max-width: 820px) {
  .container {
    padding: 0 10px;
  }
  .feature-grid {
    gap: 10px;
  }
  .feature {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 98%;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .hero {
    padding: 36px 0 28px 0;
    border-radius: 0 0 25px 25px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
    gap: 13px;
    padding: 12px;
  }
  .faq-item {
    font-size: 1rem;
    padding: 10px 10px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-modal {
    min-width: 98vw;
    padding: 19px 4vw 18px 4vw;
    max-width: 99vw;
  }
}

/*********** SMALL DEVICES ***********/
@media (max-width: 520px) {
  html {
    font-size: 96%;
  }
  .container {
    padding: 0 2vw;
  }
  .cta-primary, .cookie-btn {
    font-size: .98rem;
    padding: 9px 13vw;
    min-width: 95px;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 7px;
  }
}

/*********** PRINT SUPPORT ***********/
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}

/******* GEOMETRIC SHAPES & BOLD EFFECTS (MODERN_BOLD) *******/
.hero,
.feature,
.testimonial-card,
.card,
.faq-item {
  /* Highly geometric shapes */
  border-radius: 18px;
}
.section {
  background: var(--color-accent);
}

/********* SHADOWS & DEPTH *********/
.card, .feature, .testimonial-card, .faq-item, table {
  box-shadow: 0 2px 18px var(--color-shadow);
}

/********* OTHER FIXES & MISC *********/
.text-section ul,
.value-promises ul {
  padding-left: 13px;
}
:focus {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 3px;
}

/********* Z-INDEX *********/
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 3000;
}

/********* TRANSITIONS/MICRO-INTERACTIONS *********/
.card, .feature, .testimonial-card, .faq-item, .cta-primary,
.cookie-btn, .mobile-menu-toggle, .mobile-nav a {
  transition: box-shadow 0.17s, transform 0.18s, color 0.17s, background 0.17s, border 0.14s;
}

/******* END OF MODERN_BOLD THEME CSS ******/
