/* =====================================================
   RESET & BASE STYLES | PROFESSIONAL CORPORATE EDITION
   WissensOrbit München | Only Flexbox for layouts
   ===================================================== */

/* ------------- 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F8FAFC;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #14325B;
  background: #F8FAFC;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #2B716B;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #14325B;
  outline: none;
}

/* ================ TYPOGRAPHY =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: #14325B;
  font-weight: 600;
}
h1 {font-size: 2.75rem; line-height: 1.1; margin-bottom: 16px;}
h2 {font-size: 2rem; line-height: 1.15; margin-bottom: 16px;}
h3 {font-size: 1.375rem; margin-bottom: 10px; font-weight: 500;}
h4, h5, h6 {font-size: 1.1rem; margin-bottom: 8px;}
p {margin-bottom: 16px;}
strong {font-weight: 500;}

/* =============== GENERAL LAYOUT ================ */
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

main {
  min-height: 60vh;
  margin-bottom: 40px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARD LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(20,50,91,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(20,50,91,0.14);
  transform: translateY(-4px);
}

/* Flex utilities for content grids */
.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;
}
.

/* ============ HEADER & NAVIGATION ============= */
header {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px 0 rgba(20,50,91,0.04);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #14325B;
  padding: 8px 4px;
  border-radius: 3px;
  transition: background .16s, color .16s;
}
nav a:hover, nav a.active {
  background: #2B716B;
  color: #fff;
}
.cta-button {
  background: #2B716B;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  padding: 12px 36px;
  margin-left: 18px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(43,113,107,0.10);
  transition: background .18s, box-shadow .18s, transform .13s;
  display: inline-block;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #14325B;
  color: #fff;
  box-shadow: 0 6px 24px rgba(20,50,91,0.16);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(20,50,91,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(20,50,91,0.14);
  transform: translateY(-4px);
}

/* Flex utilities for content grids */
.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;
}
.

/* ============ HEADER & NAVIGATION ============= */
header {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px 0 rgba(20,50,91,0.04);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #14325B;
  padding: 8px 4px;
  border-radius: 3px;
  transition: background .16s, color .16s;
}
nav a:hover, nav a.active {
  background: #2B716B;
  color: #fff;
}
.cta-button {
  background: #2B716B;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  padding: 12px 36px;
  margin-left: 18px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(43,113,107,0.10);
  transition: background .18s, box-shadow .18s, transform .13s;
  display: inline-block;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #14325B;
  color: #fff;
  box-shadow: 0 6px 24px rgba(20,50,91,0.16);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.mobile-menu-toggle {
  background: none;
  color: #14325B;
  border: none;
  font-size: 2rem;
  display: none;
  margin-left: 20px;
  cursor: pointer;
  z-index: 1040;
  line-height: 1;
  padding: 5px;
  transition: background .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E2E8F0;
  border-radius: 6px;
}

/* --------- MOBILE MENU --------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #14325B;
  color: #fff;
  z-index: 1300;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.77,0,.18,1), opacity .2s;
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 32px 28px 0 0;
  align-self: flex-start;
  cursor: pointer;
  z-index: 31;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2B716B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 34px 34px 42px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  padding: 12px 4px;
  border-radius: 4px;
  font-weight: 500;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2B716B;
  color: #F6F0E3;
}

/* -------- HERO SECTIONS --------- */
.hero {
  background: #F6F0E3;
  padding: 64px 0 48px 0;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 42px -32px #14325B;
}
.hero.thankyou {
  background: #D4DEE9;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #14325B;
}
.hero p {
  font-size: 1.14rem;
  max-width: 680px;
  color: #223a5e;
}

/* --------- FEATURES ------- */
.features, .fact-cards, .about-values, .services, .services-overview, .raumfahrt-services, .angebote-overview {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.features ul, .fact-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features ul li, .fact-grid li, .feature-grid li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(20,50,91,0.06);
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .18s, transform .16s;
}
.features ul li:hover {
  box-shadow: 0 6px 28px 0 rgba(20,50,91,0.12);
  transform: translateY(-4px) scale(1.01);
}
.features ul li img {
  height: 46px;
  margin-bottom: 18px;
}
.features ul li h3 {
  color: #2B716B;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

/* --------- SERVICES / OFFERINGS --------- */
.services ul, .services-overview ul, .angebote-overview ul, .raumfahrt-services ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
  margin-bottom: 20px;
}
.services ul li,
.services-overview ul li,
.angebote-overview ul li,
.raumfahrt-services ul li {
  background: #F6F0E3;
  border-radius: 10px;
  padding: 16px 18px;
  color: #14325B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.services ul li span, .raumfahrt-services ul li span, .angebote-overview ul li span {
  font-weight: 600;
  color: #2B716B;
  font-size: 1.04rem;
  margin-left: 12px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  margin-bottom: 60px;
  background: #F6F0E3;
  padding: 40px 0;
  border-radius: 16px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(20,50,91,0.09);
  margin-bottom: 20px;
  max-width: 560px;
  color: #14325B;
}
.testimonial-card p {
  color: #223a5e;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.testimonial-author {
  font-size: 0.97rem;
  color: #2B716B;
  font-weight: 500;
  margin-top: 2px;
}

/* --------- NEWSLETTER, CONTACT TEASERS------ */
.newsletter, .contact-teaser, .contact-call, .contact-inquiry, .contact-info {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 0 30px;
  box-shadow: 0 2px 12px rgba(20,50,91,0.06);
}
.newsletter h2, .contact-teaser h2, .contact-call h2, .contact-inquiry h2, .contact-info h2 {
  color: #14325B;
}

/* ------ ABOUT, LEGAL & SPECIAL SECTIONS ---- */
.about-values, .legal {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: #F6F0E3;
  border-radius: 14px;
}
.legal .content-wrapper, .about-values .content-wrapper {
  gap: 12px;
}
.legal .text-section ul, .about-values .text-section ul {
  margin-top: 12px;
  margin-bottom: 18px;
  padding-left: 20px;
}
.legal .text-section ul li, .about-values .text-section ul li {
  margin-bottom: 10px;
}

/* --- FACT CARDS, SUBTLE INFO BLOCKS --- */
.fact-cards {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 26px;
}
.fact-cards > div {
  background: #F6F0E3;
  border-radius: 9px;
  padding: 18px 22px;
  min-width: 230px;
  box-shadow: 0 2px 10px rgba(43,113,107,0.05);
  color: #223a5e;
  font-size: 1.05rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: #14325B;
  color: #fff;
  padding: 38px 0 0;
  border-top: 1px solid #E2E8F0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-bottom: 0;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  padding: 2px 7px;
  border-radius: 3px;
  transition: background .15s, color .15s;
}
footer nav a:hover, footer nav a:focus {
  background: #2B716B;
  color: #F6F0E3;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-contact-info img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-contact-info small {
  color: #E2E8F0;
  font-size: 0.95rem;
}

/* ============ TEXT/ICON SECTIONS =========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.text-section p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #223a5e;
  font-size: 1.03rem;
}
.text-section img {
  height: 22px;
  width: 22px;
  min-width: 22px;
}

/* ============= COOKIE CONSENT BANNER ================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #14325B;
  color: #fff;
  box-shadow: 0 -2px 14px rgba(20,50,91,0.16);
  padding: 24px 24px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 6000;
  gap: 38px;
  flex-wrap: wrap;
  transition: transform .27s cubic-bezier(.77,0,.18,1), opacity .17s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px);
}
.cookie-banner-message {
  font-size: 1.02rem;
  color: #fff;
  max-width: 560px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #2B716B;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 26px;
  cursor: pointer;
  margin-right: 4px;
  transition: background .12s, color .12s, box-shadow .14s;
  box-shadow: 0 1px 4px rgba(43,113,107,0.10);
  outline: none;
}
.cookie-btn:last-child {margin-right: 0}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F6F0E3;
  color: #14325B;
  box-shadow: 0 3px 14px rgba(20,50,91,0.13);
}
.cookie-btn.secondary {
  background: transparent;
  border: 1px solid #2B716B;
  color: #F6F0E3;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #2B716B;
  color: #fff;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,50,91,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .22s, visibility .22s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #14325B;
  border-radius: 14px;
  max-width: 430px;
  width: 92vw;
  padding: 32px 28px 26px;
  box-shadow: 0 9px 48px -18px rgba(20,50,91,0.30);
  z-index: 10340;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-title {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  margin-bottom: 6px;
  color: #14325B;
}
.cookie-modal-content {
  font-size: 1rem;
  color: #223a5e;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-checkbox {
  appearance: none;
  width: 20px; height: 20px;
  border: 2px solid #2B716B;
  border-radius: 4px;
  background: #F6F0E3;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}
.cookie-checkbox:checked {
  background: #2B716B;
}
.cookie-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(43deg);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #2B716B;
  font-size: 1.72rem;
  font-weight: bold;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: -16px;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #14325B;
}

/* =========== SPACING UTILITIES ============= */
.mb-20 {margin-bottom: 20px !important;}
.mb-32 {margin-bottom: 32px !important;}
.mb-44 {margin-bottom: 44px !important;}
.mb-60 {margin-bottom: 60px !important;}
.mt-20 {margin-top: 20px !important;}

/* ========== RESPONSIVE / MOBILE FIRST ============= */
@media (max-width: 1020px) {
  header .container {
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
  }
  nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .features ul, .fact-grid, .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  main {
    margin-bottom: 20px;
  }
  header .container {
    flex-direction: row;
    height: 64px;
    padding-left: 12px;
    padding-right: 12px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    padding: 9px 19px;
    font-size: 1rem;
    margin-left: 12px;
  }
  .hero {
    padding: 44px 0 28px 0;
  }
  .features ul, .fact-grid, .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials .content-wrapper {
    gap: 14px;
  }
  .fact-cards {
    flex-direction: column;
    gap: 12px;
  }
  .newsletter, .contact-teaser, .contact-inquiry, .services, .services-overview {
    padding: 22px 0 18px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-contact-info {
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 8px 18px 14px;
  }
}

@media (max-width: 580px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 { font-size: 2rem;}
  h2 { font-size: 1.33rem; margin-bottom: 10px;}
  h3 { font-size: 1.1rem; }
  .newsletter, .contact-teaser, .contact-inquiry, .services, .services-overview {
    padding-left: 4px; padding-right: 4px;
  }
}

/* ================= SCROLLBAR ============= */
::-webkit-scrollbar {
  width: 9px;
  background: #E2E8F0;
}
::-webkit-scrollbar-thumb {
  background: #2B716B;
  border-radius: 12px;
}

/* ========== MICRO-INTERACTIONS & ANIMATIONS ========== */
.card, .features ul li, .feature-grid li, .testimonial-card, .fact-cards > div {
  transition: box-shadow .22s, transform .18s;
}
.cta-button, .cookie-btn {
  transition: background .14s, color .14s, box-shadow .16s, transform .14s;
}
.cookie-modal {
  animation: cookieModalFade .28s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalFade {
  0% {opacity:0; transform: scale(.97);}
  100% {opacity:1; transform: scale(1);}
}

/* ==================== PRINT STYLEOPT =================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, footer {
    display: none !important;
  }
  main, .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .card, .features ul li, .fact-cards > div, .newsletter, .testimonials, .section {
    box-shadow: none !important;
    border: 1px solid #E2E8F0;
  }
}

/* ==================== ACCESSIBILITY =================== */
:focus-visible {
  outline: 2px solid #2B716B !important;
  outline-offset: 2px;
}

/* ========== END OF STYLE.CSS FOR WISSENSORBIT MÜNCHEN ============ */
