/* 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.6;
  background: #FFFFFF;
  color: #1A4365;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style-type: disc;
  padding-left: 24px;
}
a {
  color: #1A4365;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2770D;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
strong, b {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A4365;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #30475E;
}
blockquote {
  margin: 16px 0;
  padding-left: 16px;
  border-left: 3px solid #F2770D;
  font-style: italic;
  color: #607080;
  background: #FEF6E1;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 8px rgba(26,67,101,0.02);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 4px;
  color: #1A4365;
  background: transparent;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F2770D;
}
.cta-button {
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: #1A4365;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,67,101,0.06);
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  text-align: center;
  display: inline-block;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #F2770D;
  color: #fff;
  box-shadow: 0 4px 16px rgba(242,119,13,0.16);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #1A4365;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 1200;
  box-shadow: 0 2px 8px rgba(26,67,101,0.07);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FEF6E1;
  color: #F2770D;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 4px 0 24px rgba(26,67,101,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: #1A4365;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2010;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FEF6E1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-top: 100px;
  margin-left: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A4365;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.12s, border-color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2770D;
  border-bottom: 1px solid #F2770D;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  min-height: 330px;
  background: #FEF6E1;
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 10px 36px rgba(26,67,101,0.05);
}
.hero .container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 20px;
}
.hero h1 {
  color: #1A4365;
  font-size: 2.5rem;
}
.hero p {
  max-width: 540px;
  color: #364860;
}

/* FLEXBOX MANDATORY CONTAINERS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  margin-bottom: 24px;
  background: #FEF6E1;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,67,101,0.05);
  border: 1px solid #ececec;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SERVICE / CATEGORY / TEAM LISTS */
.service-list, .offer-list, .category-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-item, .offer-item, .category-item, .team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,67,101,0.05);
  border: 1px solid #ececec;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 330px;
  padding: 28px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-item:hover, .offer-item:hover, .category-item:hover, .team-member:hover {
  box-shadow: 0 8px 32px rgba(26,67,101,0.10);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.category-item img {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
}
.price-tag {
  color: #F2770D;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}
.service-item a, .offer-item a {
  color: #1A4365;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 8px;
  cursor: pointer;
  transition: color 0.18s;
}
.service-item a:hover, .offer-item a:hover {
  color: #F2770D;
  text-decoration: underline;
}

.team-list { gap: 24px; flex-wrap: wrap; }
.team-member { min-width: 210px; }
.team-member h3 { margin-bottom: 4px; }
.team-member p { font-size: 1.025rem; color: #30475E; margin-bottom: 6px; }

/* TESTIMONIALS */
.testimonial-meta {
  font-size: 0.99rem;
  color: #1A4365;
  font-weight: 600;
  opacity: 0.88;
}
.star-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F2770D;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-top: -8px;
}

/* ACCORDION (FAQs) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.faq-accordion details {
  background: #FEF6E1;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(26,67,101,0.06);
  padding: 16px 22px;
  border: 1px solid #ececec;
  transition: box-shadow 0.15s;
}
.faq-accordion details[open] {
  box-shadow: 0 4px 24px rgba(26,67,101,0.12);
}
.faq-accordion summary {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #1A4365;
  font-weight: 600;
  outline: none;
}
.faq-accordion summary:focus {
  color: #F2770D;
}
.faq-answer {
  margin-top: 12px;
  color: #30475E;
}
.faq-contact-prompt {
  margin-top: 32px;
}
.faq-contact-prompt a {
  color: #F2770D;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #FEF6E1;
  border-top: 1px solid #eddcb3;
  padding: 40px 0 16px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer img {
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #1A4365;
  font-size: 1rem;
  opacity: 0.90;
  transition: color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #F2770D;
}
.contact-info {
  font-size: 0.98rem;
  color: #4C6070;
  opacity: 0.99;
}
.contact-info a {
  color: #F2770D;
  font-weight: 500;
}

/* LEGAL TEXT (DATENSCHUTZ, ETC.) */
.legal-text {
  font-size: 1rem;
  color: #30475E;
  background: transparent;
  border-radius: 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-text h2 {
  font-size: 1.18rem;
  margin-top: 20px;
}

/* THANK YOU / CTA PAGE */
.danke-section h1 {
  color: #1A4365;
  font-size: 2.1rem;
}
.danke-section p, .danke-section ul {
  color: #30475E;
}
.danke-section ul {
  margin-top: 10px;
  margin-bottom: 16px;
}

/* MISC */
.text-section {
  max-width: 540px;
}

/* BUTTONS (Cookie Banner etc.) */
.button, .cookie-banner button, .cookie-modal button, .cookie-banner-action {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-right: 16px;
  margin-bottom: 8px;
  transition: background 0.16s, color 0.16s;
  background: #1A4365;
  color: #fff;
}
.cookie-banner .cookie-settings-button {
  background: #FEF6E1;
  color: #1A4365;
  border: 1px solid #ede6cc;
}
.cookie-banner .cookie-settings-button:hover,
.cookie-modal .cookie-settings-button:hover {
  background: #F2770D;
  color: #fff;
  border-color: #F2770D;
}
.cookie-banner .accept,
.cookie-modal .accept {
  background: #1A4365;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-modal .accept:hover {
  background: #F2770D;
  color: #fff;
}
.cookie-banner .reject,
.cookie-modal .reject {
  background: #fff;
  color: #1A4365;
  border: 1px solid #ede6cc;
}
.cookie-banner .reject:hover,
.cookie-modal .reject:hover {
  background: #f9e8d1;
  color: #F2770D;
  border-color: #F2770D;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FEF6E1;
  color: #1A4365;
  box-shadow: 0 -2px 28px rgba(26,67,101,0.10);
  border-top: 1px solid #eddcb3;
  padding: 24px 18px 16px 18px;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  font-size: 1rem;
  animation: cookiefadein 0.8s cubic-bezier(.69,0,.34,1);
}
@keyframes cookiefadein {
  from { transform: translateY(80px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-banner-content {
  flex: 1 1 340px;
  min-width: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(48,71,94,0.16);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.28s;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1A4365;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(26,67,101,0.18);
  padding: 28px 34px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 6100;
  animation: modalpop 0.24s cubic-bezier(.5,1.25,0,1);
}
@keyframes modalpop {
  from { transform: scale(0.91); opacity: 0; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #1A4365;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A4365;
}
.cookie-toggle {
  accent-color: #F2770D;
  width: 20px; height: 20px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { padding: 0 12px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 16px; }
  .footer-nav { flex-direction: column; gap: 9px; }
  .container { max-width: 98vw; }
  .service-item,
  .offer-item,
  .category-item,
  .team-member { min-width: 220px; max-width: 100%; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { min-height: 210px; border-radius: 14px; padding: 10px 0; }
  .main-nav { display: none; }
  .cta-button { padding: 9px 18px; font-size: 0.97rem; }
  .mobile-menu-toggle { display: flex; }
  .container { flex-direction: column; gap: 22px; }
  .content-grid, .card-container, .service-list, .offer-list, .category-grid, .team-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 22px; }
  .testimonial-card { flex-direction: column; gap: 14px; }
  .footer-nav, .contact-info { margin-top: 18px; }
  footer .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  section { padding: 28px 6px; }
  .card, .service-item, .offer-item, .category-item, .team-member {
    min-width: 0; max-width: 100%;
    padding: 18px 10px;
    margin-bottom: 18px;
  }
  .hero .content-wrapper { gap: 12px; }
  .cookie-banner, .cookie-modal { flex-direction: column; gap: 18px; padding: 20px 7px; font-size: 0.98rem; }
  .cookie-banner-actions, .cookie-modal-actions { flex-direction: column; gap: 9px; }
}
@media (max-width: 460px) {
  .container { padding: 0 2vw; }
  header .container, footer .container { gap: 6px; }
  .testimonial-card, .service-item, .offer-item, .category-item, .team-member { padding: 15px 4px; }
  .cookie-banner, .cookie-modal { padding: 14px 2px; font-size: 0.97rem; }
}

/* SCROLLBAR (Minimal look) */
::-webkit-scrollbar {
  width: 8px;
  background: #FEF6E1;
}
::-webkit-scrollbar-thumb {
  background: #ececec;
  border-radius: 4px;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .service-item, .offer-item, .category-item, .team-member, .testimonial-card, .cta-button {
  transition: box-shadow 0.18s, transform 0.18s;
}
.cta-button:hover, .card:hover, .service-item:hover, .offer-item:hover, .category-item:hover, .team-member:hover, .testimonial-card:hover {
  box-shadow: 0 8px 38px rgba(242,119,13,0.09);
  transform: translateY(-4px) scale(1.01);
}

/* MISC UI IMPROVEMENTS */
::-moz-focus-inner, :-moz-focusring {
  border: 0;
}
:focus {
  outline: 2px solid #F2770D;
  outline-offset: 2px;
}

/* TYPOGRAPHY: SCALE */
body, p, ul, ol, li, a, .contact-info {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* MINIMAL SHADOWS, RADIUS, COLOR BALANCE */
.card, .service-item, .offer-item, .testimonial-card, .team-member {
  box-shadow: 0 2px 14px rgba(26,67,101,0.04);
  border-radius: 16px;
  background: #fff;
}

/* Helper Classes */
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }

/* END CSS */
