/* --- 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;
}
/* Set base for HTML5 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F2E8DF;
  color: #17415F;
  min-height: 100vh;
}
a {
  color: #17415F;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #42B883;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
ul, ol {
  list-style-position: inside;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #17415F;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.4rem;
}
h4, h5, h6 {
  font-size: 1.12rem;
}
p, ul, ol, li, span, label, a, blockquote, input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #17415F;
  letter-spacing: 0.01em;
  font-size: 1em;
}
strong {
  font-weight: 700;
  color: #17415F;
}
blockquote {
  border-left: 6px solid #42B883;
  padding-left: 18px;
  margin: 18px 0 18px 0;
  color: #17415F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  background: #F2E8DF;
}
blockquote footer {
  display: block;
  padding-top: 10px;
  color: #379C6F;
  font-size: 0.95em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/* --- GLOBAL LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER/STICKY NAVIGATION --- */
header {
  background: #17415F;
  color: #FFFFFF;
  width: 100%;
  box-shadow: 0 3px 16px rgba(23,65,95, .10);
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 18px 24px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #42B883;
}
header .cta-button {
  margin-left: auto;
}
header img {
  height: 44px;
}

/* --- CTA BUTTON --- */
.cta-button {
  background: #42B883;
  color: #FFFFFF;
  border-radius: 30px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(23,65,95,0.08);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #17415F;
  color: #FFFFFF;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 6px 24px rgba(66,184,131,0.16);
}

/* --- HERO SECTION --- */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
  background: #42B883;
  color: #fff;
  position: relative;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 32px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta-button {
  background: #17415F;
  color: #fff;
  margin-top: 20px;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: #fff;
  color: #17415F;
  box-shadow: 0 8px 32px rgba(23,65,95,0.22);
}

/* --- SECTION GENERAL --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- FEATURES GRID / FLEX LAYOUT --- */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .container {
  align-items: stretch;
}
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 268px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 12px rgba(23,65,95,0.06);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 6px 24px rgba(66,184,131,0.11);
  transform: translateY(-3px) scale(1.035);
}
.feature-grid img {
  height: 48px;
}

/* --- ABOUT PREVIEW --- */
.about-preview {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #17415F;
  color: #fff;
  border-radius: 18px;
}
.about-preview h2, .about-preview p {
  color: #fff;
}
.about-preview .cta-button {
  background: #fff;
  color: #17415F;
  margin-top: 16px;
}
.about-preview .cta-button:hover, .about-preview .cta-button:focus {
  background: #42B883;
  color: #fff;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials .container {
  gap: 36px;
}
.testimonials h2 {
  color: #17415F;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px 28px 24px 28px;
  background: #F2E8DF;
  color: #17415F;
  box-shadow: 0 2px 16px rgba(23,65,95,0.07);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.08em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-width: 240px;
  max-width: 540px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.testimonial-card p {
  color: #17415F;
  font-style: italic;
}
.testimonial-card span {
  color: #379C6F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.99em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(66,184,131,0.15);
  transform: scale(1.025);
}

/* --- CTA SECTION --- */
.cta {
  background: #42B883;
  color: #FFFFFF;
  border-radius: 18px;
  padding: 40px 0;
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  color: #fff;
}
.cta .cta-button {
  background: #fff;
  color: #42B883;
  margin-top: 16px;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #17415F;
  color: #fff;
}

/* --- SECTION & CARD CONTAINER FLEX PATTERNS--- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(23,65,95,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- INVESTOREN, INTERVIEWS, RESSOURCEN TYPICALS --- */
.stories-overview ul, .tips-grid ul, .interviews-overview ul, .faq ul, .resource-list ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stories-overview li, .tips-grid li, .faq li, .resource-list li, .interviews-overview li {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 1.03em;
  box-shadow: 0 1px 7px rgba(23,65,95,.05);
}
.stories-overview a, .tips-grid a, .interviews-overview a {
  font-weight: 700;
  color: #42B883;
  margin-left: 8px;
}
.highlight {
  background: #17415F;
  color: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(23,65,95,.09);
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight h3 {
  color: #42B883;
}
.highlight .cta-button {
  background: #42B883;
  color: #fff;
}
.highlight .cta-button:hover, .highlight .cta-button:focus {
  background: #fff;
  color: #17415F;
}

.filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.filter label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.filter select {
  padding: 6px 18px;
  border-radius: 10px;
  border: 1px solid #17415F;
  font-size: 1em;
  font-family: inherit;
  background: #F2E8DF;
  color: #17415F;
}

/* --- CONTACT PAGE --- */
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
  align-items: flex-start;
}
.contact-form-fields img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-form-fields p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
}
.contact-section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.contact-info {
  margin-bottom: 60px;
  padding: 40px 0;
}
.map .static-map {
  margin: 18px 0 0 0;
  padding: 28px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 12px rgba(23,65,95,0.08);
}

/* --- FOOTER --- */
footer {
  background: #17415F;
  color: #fff;
  width: 100%;
  padding: 40px 0 28px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.05em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #42B883;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 160px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 4px;
}
.footer-brand span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.99em;
  color: #FFF;
}
.footer-contact {
  font-size: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
.footer-contact p {
  color: #fff;
  line-height: 1.55;
  font-size: 0.99em;
}

/* --- LEGAL / THANK YOU PAGES --- */
.legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 0;
}
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.legal ul li {
  font-size: 1.03em;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 26px;
  font-size: 2rem;
  z-index: 101;
  color: #42B883;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(23,65,95,.11);
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #42B883;
  color: #fff;
  box-shadow: 0 4px 16px rgba(66,184,131,0.19);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 340px;
  height: 100vh;
  background: #17415F;
  z-index: 1200;
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(0.68,-0.35,0.27,1.25);
  box-shadow: -8px 0 32px rgba(23,65,95,0.18);
  padding: 30px 24px 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #42B883;
  background: none;
  margin-bottom: 24px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #42B883;
  color: #fff;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #17415F;
  color: #fff;
  width: 100%;
  z-index: 21000;
  box-shadow: 0 -2px 12px rgba(23,65,95,0.09);
  padding: 24px 18px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  font-size: 1.06em;
  transition: transform 0.27s cubic-bezier(0.65,-0.2,0.27,1.25);
  transform: translateY(0%);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .cta-button {
  border: none;
  border-radius: 9px;
  padding: 9px 18px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, transform 0.11s;
}
.cookie-banner .accept {
  background: #42B883;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #379C6F;
}
.cookie-banner .reject {
  background: #fff;
  color: #17415F;
  border: 2px solid #42B883;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F2E8DF;
  color: #17415F;
}
.cookie-banner .settings {
  background: #17415F;
  color: #42B883;
  border: 2px solid #42B883;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #42B883;
  color: #fff;
}

/* --- COOKIE SETTINGS MODAL ---*/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 22000;
  background: #fff;
  color: #17415F;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(23,65,95,.27);
  width: 98vw;
  max-width: 410px;
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalFade 0.35s 1 cubic-bezier(.41, .87, .56, 1.35);
}
@keyframes cookieModalFade {
  from { transform: translate(-50%,-55%) scale(0.92); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  color: #17415F;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.06em;
}
.cookie-modal__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal__switch {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}
.cookie-switch {
  width: 38px;
  height: 24px;
  background: #F2E8DF;
  border-radius: 12px;
  position: relative;
  outline: none;
  border: 1px solid #42B883;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-switch[aria-checked='true'] {
  background: #42B883;
}
.cookie-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #fff;
  transition: left 0.15s;
}
.cookie-switch[aria-checked='true']:before {
  left: 17px;
  background: #17415F;
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .accept, .cookie-modal .reject {
  font-size: 0.98em;
  padding: 8px 16px;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 1.8rem;
  color: #42B883;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #17415F;
}
.cookie-modal__desc {
  font-size: 0.99em;
  color: #666;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 910px) {
  header .container {
    gap: 14px;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px 12px;
  }
  .footer-nav, .footer-brand, .footer-contact {
    min-width: 90px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  header .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 8px;
  }
  header nav {
    display: none;
  }
  header .cta-button {
    margin: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-contact p {
    font-size: 0.95em;
  }
  .container {
    padding: 0 10px;
  }
  .content-grid,
  .feature-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 22px 12px;
    font-size: 0.98em;
  }
  .about-preview, .cta, .features, .testimonials, .section {
    padding: 28px 5px;
  }
  .highlight {
    padding: 20px 10px;
  }
  .map .static-map {
    padding: 11px;
  }
  .footer-nav, .footer-brand, .footer-contact {
    min-width: 0;
    width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-modal {
    max-width: 100vw;
    width: 97vw;
    left: 50%;
    padding: 22px 5vw;
  }
}
@media (max-width: 525px) {
  html, body {
    font-size: 14px;
  }
  .header img {
    height: 33px;
  }
  .hero {
    padding: 28px 0 18px 0;
  }
  header .container {
    padding: 8px 2px;
  }
  .cta-button {
    padding: 10px 17px;
    font-size: 1em;
  }
  .testimonial-card {
    padding: 13px 5px;
  }
  .about-preview, .cta, .features, .testimonials, .section {
    padding: 14px 2px;
  }
}

/* --- MICRO-INTERACTIONS & SHADOWS --- */
.card, .feature-grid > div, .testimonial-card, .highlight, .about-preview, .cta {
  transition: box-shadow 0.13s, transform 0.14s;
  will-change: box-shadow, transform;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .highlight:hover, .about-preview:hover, .cta:hover {
  box-shadow: 0 8px 36px rgba(23,65,95,0.17);
  transform: translateY(-3px) scale(1.012);
}

/* --- GENERIC UTILITIES --- */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-12 { gap: 12px !important; }
.text-bold { font-weight: 700; }
.bg-primary { background: #17415F !important; color: #fff !important; }
.bg-accent { background: #42B883 !important; color: #fff !important; }

/* --- END --- */
