/* 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, 
main, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F4F0EE;
  color: #2B3345;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {  
  color: #E59228;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2B3345;
  text-decoration: underline;
}
ol, ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #2B3345;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
p, li, span { font-size: 1rem; word-break: break-word; }
:focus { outline: 2px solid #E59228; outline-offset: 2px; }

/* CORE LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(235, 184, 65, 0.07), 0 1.5px 2.5px rgba(43, 51, 69, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
/* FLEX SPACING & PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(43,51,69,0.10), 0 1px 3px 0 rgba(229,146,40,0.06);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  min-width: 260px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(229,146,40,0.23), 0 2px 9px rgba(43,51,69,0.11);
  transform: translateY(-6px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 18px 40px 18px 40px;
  border-left: 6px solid #E59228;
  box-shadow: 0 2px 12px rgba(43,51,69,0.10);
}
.testimonial-card p {
  color: #2B3345;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #555;
  font-family: 'Open Sans', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #F4F0EE;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #E5E5EA;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
}
header img {
  height: 46px;
  margin-right: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Roboto Slab', Arial, sans-serif;
  color: #2B3345;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 5px;
  border-radius: 7px;
  transition: background .23s, color .18s;
}
nav a:hover, nav a.active {
  background: #E59228;
  color: #fff;
}
.cta-primary, .cta-secondary, .inline-link {
  display: inline-block;
  font-family: 'Roboto Slab', Arial, sans-serif;
  font-weight: bold;
  border-radius: 38px;
  padding: 12px 34px;
  margin: 8px 0;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 9px 0 rgba(229,146,40,0.13);
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background .19s, color .19s, transform .18s;
}
.cta-primary {
  background: #E59228;
  color: #fff;
  border: 2px solid #E59228;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2B3345;
  color: #fff;
  border-color: #2B3345;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: #fff;
  color: #E59228;
  border: 2px solid #E59228;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #E59228;
  color: #fff;
}
.inline-link {
  background: transparent;
  color: #E59228;
  border: none;
  box-shadow: none;
  padding: 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline;
}
.inline-link:hover, .inline-link:focus {
  color: #2B3345;
}

/* BURGER MENU (MOBILE NAV) */
.mobile-menu-toggle {
  display: none;
  background: #E59228;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow .22s, background .17s;
  box-shadow: 0 1.5px 4px rgba(235,184,65,0.12);
  position: relative;
  z-index: 1100;
}
.mobile-menu-toggle:active { background: #C2781B; }
.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #2B3345;
  color: #fff;
  z-index: 2000;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 28px;
  transition: transform .33s cubic-bezier(.83,-0.01,.1,1.01);
  transform: translateX(-100vw);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px; top: 22px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  z-index: 2010;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E59228;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: 100%;
  align-items: flex-start;
  padding: 70px 34px 28px 34px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', Arial, sans-serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 9px;
  padding: 14px 8px;
  letter-spacing: 0.02em;
  transition: background .18s, color .13s;
  border: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #E59228;
  color: #fff;
}
@media (max-width: 1022px) {
  nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1023px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
  .mobile-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO/TAGLINE/HEADERS */
.tagline {
  color: #E59228;
  font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  font-weight: 500;
  margin-bottom: 18px;
  margin-top: -8px;
  letter-spacing: 0.03em;
}

/* ICON LISTS (mit Icon inline) */
ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  color: #2B3345;
  font-size: 1.07rem;
}
ul li img {
  width: 28px;
  height: 28px;
  display: block;
}
.section ul li:last-child {
  margin-bottom: 0;
}

/* TEXT BLOCKS (privacy etc.) */
.text-section p, .text-section ul li {
  font-size: 1.1rem;
  color: #2B3345;
  margin-bottom: 12px;
}
.text-section h3 {
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.text-section ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 12px;
}
.text-section ul li {
  margin-bottom: 8px;
  list-style: disc inside;
  display: list-item;
}

/* FOOTER */
footer {
  background: #2B3345;
  color: #fff;
  padding: 38px 0 20px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer img {
  height: 40px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 7px 0 2px 0;
}
footer nav a {
  color: #fff;
  opacity: 0.9;
  font-size: 1.06rem;
  font-family: 'Roboto Slab', Arial, sans-serif;
  font-weight: 500;
  border-radius: 7px;
  padding: 6px 7px;
  transition: background 0.14s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #E59228;
  color: #fff;
  opacity: 1;
}
.footer-contact {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
  color: #ffd081;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* RESPONSIVE DETAILS */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .section { padding: 28px 5px; }
  .container { padding: 0 7px; }
  .testimonial-card { flex-direction: column; padding: 14px 10px; gap: 11px; }
  .text-image-section, .content-grid, .card-container { flex-direction: column; gap: 15px; }
  footer .container { padding: 0 5px; gap: 11px; }
}
@media (max-width: 425px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  nav, footer nav { gap: 11px; }
  .cta-primary, .cta-secondary { padding: 11px 12px; font-size: 1rem; }
  .card { min-width: 195px; padding: 15px 7px; }
}

/* UNIQUE/CREATIVE ELEMENTS */
.section {
  box-shadow: 0 5px 32px 0 rgba(229,146,40,0.12), 0 1.5px 7px 0 rgba(43,51,69,0.08);
  border: 2.5px dashed #E59228;
}
.section:nth-child(even) {
  background: #FEF8F3;
  border-radius: 40px 16px 40px 16px;
}
.card {
  border-left: 4px solid #E59228;
  border-right: 2px solid #2B3345;
  border-radius: 18px 34px 18px 34px;
  background: #fffdf8;
}
.testimonial-card {
  background: #fff8ee;
  border: 1.5px solid #E59228;
  box-shadow: 0 1px 11px rgba(43,51,69,0.12);
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.card, .cta-primary, .cta-secondary, .testimonial-card {
  transition: box-shadow .20s, background .22s, color 0.13s, transform 0.16s;
}
.card:hover, .card:focus-within {
  background: #fdf1dc;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}
.inline-link:active {
  color: #E59228;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff4dd;
  color: #2B3345;
  border-top: 4px solid #E59228;
  box-shadow: 0 -4px 28px rgba(43,51,69,0.07);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 19px 20px 18px;
  font-size: 1.01rem;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button, .cookie-modal button {
  font-family: 'Roboto Slab', Arial, sans-serif;
  font-weight: bold;
  border-radius: 31px;
  padding: 7px 24px;
  background: #E59228;
  color: #fff;
  border: 2px solid #E59228;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0;
  margin-right: 8px;
  transition: background .13s, color .13s, border-color .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus,
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #2B3345;
  border-color: #2B3345;
}
.cookie-banner__settings {
  background: #fff;
  color: #E59228;
  border: 2px solid #E59228;
  margin-right: 0;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #E59228;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 17px 7px 14px 7px;
    font-size: 0.97rem;
  }
  .cookie-banner__buttons {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner button, .cookie-modal button {
    padding: 8px 14px;
  }
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(43,51,69, 0.83);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3240;
  animation: fadeinbg .19s show forwards;
}
.cookie-modal-overlay.active { display: flex; }
@keyframes fadeinbg { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fffdf8;
  color: #2B3345;
  border-radius: 22px 36px 22px 36px;
  padding: 30px 20px 20px 20px;
  min-width: 320px; max-width: 98vw;
  z-index: 3260;
  box-shadow: 0 0 44px 0 rgba(43,51,69,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideInModal .29s cubic-bezier(.78,-0.1,.83,1.12);
}
@keyframes slideInModal {
  0% { transform: translateY(70px) scale(0.97); opacity: 0.5; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 { font-size: 1.1rem; color: #E59228; }
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
}
.cookie-modal__category input[type=checkbox] {
  width: 19px; height: 19px;
  accent-color: #E59228;
}
.cookie-modal__category label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal__desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 9px;
}
.cookie-modal__essential {
  color: #2B3345;
  font-size: 1rem;
  font-style: italic;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    padding: 14px 7px 11px 7px;
  }
}

/* UTILITY CLASSES */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.hide { display: none !important; }

/* FORM ELEMENTS (Kontakt etc.) */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 7px;
  background: #fff;
  border: 2px solid #dedede;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E59228;
}
button { cursor: pointer; }

/* DECORATIVE - PAINT-LIKE STROKES/ELEMENTS (Visual, but not required: skip absolute positioning for content!) */

/* SCROLLBAR STYLING */
*::-webkit-scrollbar { width: 9px; background: #E5E5EA; }
*::-webkit-scrollbar-thumb { background: #E59228; border-radius: 4px; }

/* --- END OF CSS FILE --- */
