/* === 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,
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 { box-sizing: border-box; height: 100%; }
*, *:before, *:after { box-sizing: inherit; }
body { min-height: 100%; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  background: #F9FAFB;
  color: #1F2A44;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: inherit; text-decoration: none; transition: color .18s; }
ul, ol { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1F2A44;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 18px; color: #34405e; }
strong { font-weight: 600; }

/* === Container === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === Header & Navigation === */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(31,42,68,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 12px;
}
header img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1F2A44;
  opacity: 0.92;
  padding: 8px 0;
  transition: color .16s, opacity .15s;
  font-weight: 500;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #006348;
  opacity: 1;
}
.cta-button {
  background: #257A60;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 1.025rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(31,42,68,0.09);
  letter-spacing: .03em;
  transition: background 0.18s, transform 0.15s, box-shadow .2s;
  border: none;
  outline: none;
  display: inline-block;
  margin-left: 12px;
}
.cta-button:hover, .cta-button:focus {
  background: #006348;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 20px rgba(31,42,68,0.12);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #1F2A44;
  background: transparent;
  border: none;
  margin-left: 16px;
  z-index: 1011;
  transition: color .18s;
}
.mobile-menu-toggle:focus {
  color: #006348;
  outline: 2px solid #d0e9df;
  outline-offset: 2px;
}

/* ========== Mobile Menu (burger navigation) ========== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 16px rgba(31,42,68,0.16);
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.83,0.01,0.26,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #1F2A44;
  background: none;
  align-self: flex-end;
  margin: 22px 18px 0 0;
  transition: color .16s;
}
.mobile-menu-close:focus {
  color: #006348;
  outline: 2px solid #257A60;
  outline-offset: 3px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 32px 16px 32px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #1F2A44;
  padding: 8px 0;
  border-radius: 8px;
  transition: background 0.18s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #d5f1e5;
  color: #006348;
}
/* Overlay background when menu open */
body.menu-open:after {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33, 43, 62, 0.34);
  z-index: 1009;
}

/* === Hero Section === */
.hero {
  background: #F9FAFB;
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #1F2A44;
  font-size: 2.25rem;
  margin-bottom: 14px;
}
.hero p {
  color: #34405e;
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.hero .cta-button {
  margin-top: 6px;
}

/* === Main Spacing Patterns === */
.section,
.features,
.about,
.solutions,
.services,
.team,
.contact,
.legal-section,
.cta,
.confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(31,42,68,0.03);
}

.features .content-wrapper,
.about .content-wrapper,
.solutions .content-wrapper,
.services .content-wrapper,
.team .content-wrapper,
.contact .content-wrapper
{
  gap: 26px;
}

/* === Cards, Lists, and Flex Containers === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(31,42,68,0.04);
  padding: 28px 24px 28px 24px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .22s, transform .18s;
}
.card:hover {
  box-shadow: 0 12px 38px rgba(31,42,68,0.09);
  transform: translateY(-3px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  align-items: center;
  gap: 20px;
  background: #F2F6F3;
  color: #233154;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(31,42,68,0.07);
  margin-bottom: 20px;
  font-size: 1.08rem;
  flex-wrap: wrap;
  min-width: 0;
  transition: box-shadow .19s, background .17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(31,42,68,0.12);
  background: #e6f8ee;
}
.testimonial-card p {
  color: #233154;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card span {
  color: #006348;
  font-weight: 600;
  margin-left: 14px;
  font-size: .97em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === Features and Listings === */
.feature-grid, .feature-bullets, .service-list, .workshop-list, .success-metrics, .startup-packages, .contact-info, .contact-details, .mentoring-benefits, .service-steps, .terms-list, .user-obligations, .limitation-of-liabilities, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.feature-grid li, .feature-bullets li {
  flex: 1 1 190px;
  background: #F9FAFB;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(31,42,68,0.03);
  padding: 22px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  transition: box-shadow .15s, background .13s;
}
.feature-grid li:hover, .feature-bullets li:hover {
  background: #e6f8ee;
  box-shadow: 0 7px 17px rgba(31,42,68,0.09);
}
.feature-grid img, .feature-bullets img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.feature-grid h3 {
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.service-list li, .workshop-list li, .success-metrics li, .startup-packages li, .contact-info li, .contact-details li {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(31,42,68,0.03);
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.service-list strong, .workshop-list strong {
  color: #257A60;
  font-size: 1.05rem;
}
.service-list .price, .workshop-list span, .service-list span {
  margin-left: 8px;
  color: #006348;
  font-weight: 600;
  font-size: .97em;
}

.project-summary {
  border-left: 4px solid #257A60;
  background: #F9FAFB;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 16px 16px 16px 24px;
  box-shadow: 0 2px 9px rgba(31,42,68,0.05);
}
.project-summary h3 {
  margin-bottom: 4px;
}

.success-metrics li {
  font-size: 1.09rem;
  background: #e6f8ee;
  color: #1F2A44;
  border-left: 6px solid #006348;
  padding-left: 19px;
}

/* === Contact and Footer === */
.contact-info, .contact-details {
  flex-direction: column;
  gap: 15px;
}
.contact-info li, .contact-details li {
  display: contents;
  align-items: center;
  gap: 12px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding-left: 0;
  font-size: 1rem;
}
.contact-info img, .contact-details img {
  width: 22px;
  height: 22px;
}
.privacy-notice {
  font-size: 0.95rem;
  background: #F2F6F3;
  color: #233154;
  border-radius: 9px;
  padding: 10px 15px;
  margin-bottom: 16px;
}
.privacy-notice a {
  color: #006348;
  text-decoration: underline;
}

/* === CTA Section === */
.cta {
  background: #F9FAFB;
  border: 2px solid #d5f1e5;
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(31,42,68,0.025);
  padding: 40px 22px;
  margin-bottom: 40px;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.cta .cta-button {
  margin: 0 auto;
}

/* === Footer === */
footer {
  background: #1F2A44;
  color: #fff;
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-menu {
  display: flex;
  gap: 30px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #f4f6fa;
  opacity: .81;
  font-size: .97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: opacity .15s, color .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #a5f1d2;
  opacity: 1;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  font-size: 1rem;
}
.brand-footer img {
  height: 32px;
  width: auto;
}

/* ========== Cookie Consent Banner & Modal ========== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #1F2A44;
  border-top: 2px solid #dbeee3;
  box-shadow: 0 -2px 30px rgba(31,42,68,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  z-index: 2999;
  gap: 24px;
  animation: slideUpFade 0.7s;
}
@keyframes slideUpFade {
  from {
    transform: translateY(48px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.cookie-consent-banner .cookie-message {
  font-size: 1rem;
  max-width: 620px;
  flex: 2 2 320px;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.cookie-btns button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  border-radius: 22px;
  padding: 8px 19px;
  background: #F9FAFB;
  color: #1F2A44;
  border: 1.5px solid #dbeee3;
  transition: background .16s, border .15s, color .14s;
  font-weight: 500;
  cursor: pointer;
}
.cookie-btns .accept {
  background: #257A60;
  color: #fff;
  border: none;
}
.cookie-btns .accept:hover, .cookie-btns .accept:focus {
  background: #006348;
}
.cookie-btns .reject {
  background: #fff;
  color: #1F2A44;
  border: 1.5px solid #257A60;
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus {
  background: #dedefa;
  border-color: #006348;
}
.cookie-btns .settings {
  background: #fff;
  color: #257A60;
  border: 1.5px solid #d0e9df;
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus {
  background: #d5f1e5;
  color: #006348;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top: 0; bottom: 0;
  z-index: 3000;
  background: rgba(33,43,62, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .34s;
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  width: 90vw;
  max-width: 460px;
  padding: 28px 30px 24px 30px;
  box-shadow: 0 12px 54px rgba(31,42,68,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popIn .33s cubic-bezier(0.7,0.02,0.38,1.06);
}
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0;} to { transform:scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 9px;
  color: #1F2A44;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 11px;
}
.category-label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #257A60;
  font-size: 1.05rem;
  margin-right: 9px;
}
.category-toggle {
  margin-right: 7px;
  accent-color: #257A60;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.6rem;
  color: #1F2A44;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-close:focus {
  color: #006348;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .modal-btns button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  border-radius: 22px;
  padding: 8px 20px;
  font-weight: 500;
  transition: background .17s, color .18s;
}
.cookie-modal .accept {
  background: #257A60;
  color: #fff;
  border: none;
}
.cookie-modal .accept:hover,
.cookie-modal .accept:focus {
  background: #006348;
}
.cookie-modal .reject {
  background: #fff;
  color: #1F2A44;
  border: 1.5px solid #257A60;
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus {
  background: #dedefa;
  border-color: #006348;
}

/* === Confirmation Page === */
.confirmation {
  background: #F9FAFB;
  border: 2px solid #dbeee3;
  border-radius: 16px;
  box-shadow: 0 2px 11px rgba(31,42,68,0.025);
  text-align: center;
}
.confirmation .content-wrapper {
  gap: 18px;
}

/* ========== Legal Section (DSGVO, Data Privacy etc.) ========== */
.legal-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px rgba(31,42,68,0.035);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal-section h1 {
  color: #257A60;
}

/* ========== Misc / Utilities ========== */
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-32 { gap: 32px !important; }
.text-center { text-align: center; }

/* ========== Responsive Styles ========== */
@media (max-width: 1100px) {
  .container { max-width: 94vw; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
  .features .content-wrapper, .about .content-wrapper, .solutions .content-wrapper, .services .content-wrapper, .team .content-wrapper, .contact .content-wrapper {
    gap: 16px;
  }
  .footer-menu { gap: 16px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 100vw;
  }
  header .container {
    gap: 6px;
  }
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    min-height: 196px;
    padding: 33px 0 33px 0;
  }
  .section, .features, .about, .solutions, .services, .team, .contact, .legal-section, .cta, .confirmation {
    padding: 24px 8px;
  }
  .content-grid, .card-container, .feature-grid, .feature-bullets, .service-list, .workshop-list, .success-metrics, .startup-packages {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 15px 12px;
    font-size: 1rem;
  }
  .card {
    padding: 16px 10px 16px 10px;
  }
  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .brand-footer {
    flex-direction: column;
    gap: 5px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .cta {
    padding: 24px 4px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 16px 10px;
    gap: 14px;
    text-align: left;
  }
  .cookie-btns {
    gap: 8px;
  }
  .cookie-modal {
    padding: 18px 8px 16px 8px;
  }
}
@media (max-width: 470px) {
  h1, h2, h3 {
    font-size: 1.08rem;
  }
  .cookie-modal { max-width: 98vw; }
}

/* === Transition/Fade utility for all links&btns === */
a, button {
  transition: color .15s, background .15s, box-shadow .17s, transform .14s;
}

/* === Focus ring for accessibility === */
a:focus, button:focus {
  outline: 2px solid #006348;
  outline-offset: 2px;
}

/* === Hide elements visually (for scripting/JS hooks) === */
.is-hidden { display: none !important; }
