/* 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;
}
footer p {
  color: white;
}
html { 
  font-size: 16px; 
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1E325C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #181818;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin-left: 18px;
}
strong, b {
  font-weight: 700;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #181818;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1E325C;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #222;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181818;
  border-left: 4px solid #1E325C;
  background: #fafafb;
  padding: 18px 24px;
  margin: 22px 0 22px 0;
  border-radius: 6px;
}
ul li,
ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #181818;
}

/* SECTION, SPACING, AND FLEX LAYOUTS */
.section,
.hero,
.features,
.about,
.about_intro,
.services,
.contact_cta,
.contact,
.legal,
.confirmation,
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .section,
  .hero,
  .features,
  .about,
  .about_intro,
  .services,
  .contact_cta,
  .contact,
  .legal,
  .confirmation,
  .testimonials {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #f8f8f9;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(18,22,28, 0.07);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 12px 42px rgba(30,50,92,0.16);
  transform: translateY(-3px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(30,50,92,0.09);
  min-width: 250px;
  max-width: 480px;
  margin-bottom: 20px;
  border-left: 4px solid #1E325C;
}

.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #181818;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #616066;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e1e1e5;
  box-shadow: 0 2px 16px rgba(30,50,92,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
}
header img {
  height: 42px;
}
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1E325C;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #e9e9ec;
  color: #181818;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1E325C;
  cursor: pointer;
  z-index: 1050;
  margin-left: 18px;
  border-radius: 6px;
  padding: 4px 12px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover {
  background: #f4f4f6;
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,34,0.98);
  box-shadow: 0 12px 60px rgba(30,50,92,0.22);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.59,.01,.21,.99);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-top: 24px;
  margin-left: 20px;
  margin-bottom: 24px;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  padding-left: 30px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #1E325C;
  color: #39B58D;
}

@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTIONS */
.hero {
  background: #f4f4f6;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 36px rgba(30,50,92,0.07);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181818;
  color: #fff;
  padding: 14px 32px;
  border-radius: 28px;
  font-size: 1.12rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(18,22,28,0.09);
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.14s, box-shadow 0.18s;
  margin-top: 8px;
  margin-bottom: 8px;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: #39B58D;
  color: #181818;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(30,50,92,0.14);
  text-decoration: none;
}

/* FEATURES, CARDS & SERVICE CARDS */
.features .content-wrapper, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 22px;
}
.feature {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(30,50,92,0.07);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  filter: grayscale(1) contrast(1.14) brightness(1.1);
  opacity: .85;
  transition: filter 0.2s, opacity 0.2s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 30px rgba(30,50,92,0.14);
  transform: translateY(-3px);
}
.feature:hover img,
.feature:focus-within img {
  filter: none;
  opacity: 1;
}

.service-cards, .services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,50,92,0.08);
  padding: 24px 16px 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 330px;
  border-left: 4px solid #1E325C;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 32px rgba(30,50,92,0.12);
  border-color: #39B58D;
  transform: translateY(-2px);
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #39B58D;
  font-weight: 700;
  font-size: 1.11rem;
  margin-top: 12px;
  margin-bottom: 2px;
}

@media (max-width: 1024px) {
  .features .content-wrapper, .feature-grid, .service-cards, .services .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .feature, .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ABOUT INTRO/CARDS */
.about_intro ul, .about ul {
  margin: 14px 0;
}

/* TESTIMONIAL SECTION */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}

/* CONTACT PAGE */
.contact .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 38px;
  flex-wrap: wrap;
}
.contact .text-section {
  flex: 1 1 250px;
}
.contact .map-placeholder {
  background: #f4f4f6;
  border-radius: 12px;
  padding: 24px;
  min-width: 200px;
  flex: 1 1 300px;
  color: #616066;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .contact .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

/* FOOTER */
footer {
  background: #181818;
  color: #fff;
  padding: 0 0 18px 0;
}
footer .container {
  padding: 18px 20px 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 14px;
}
.footer-logo img {
  height: 38px;
  filter: brightness(1) grayscale(1);
}
.footer-contact {
  color: #e2e2e6;
  font-size: 0.99rem;
  max-width: 325px;
}
.footer-contact a {
  color: #39B58D;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #C0C0CB;
  font-size: 0.99rem;
  letter-spacing: .01em;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-social-links {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}
.footer-social-links img {
  width: 27px;
  height: 27px;
  filter: grayscale(1) brightness(1.06);
  opacity: .78;
  transition: filter 0.12s, opacity 0.12s;
}
.footer-social-links a:hover img,
.footer-social-links a:focus img {
  filter: none;
  opacity: 1;
}
@media (max-width: 970px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* LEGAL PAGE (DATENSCHUTZERKLÄRUNG, ETC) */
.legal {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(30,50,92,0.07);
}
.legal h1 {
  margin-bottom: 18px;
}
.legal h2 {
  margin-top: 18px;
  margin-bottom: 11px;
  font-size: 1.29rem;
  color: #1E325C;
  font-weight: 600;
}
.legal ul,
.legal ol {
  margin-left: 24px;
  margin-bottom: 12px;
}

/* ICON LISTS, COURSE LISTS ETC */
.icon-list,
.feature-icons,
.coaching-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
}
.icon-list img, .feature-icons img, .coaching-icons img {
  width: 45px;
  height: 45px;
  filter: grayscale(1) contrast(1.19);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.icon-list img:hover, .feature-icons img:hover, .coaching-icons img:hover {
  opacity: 1; filter: none;
}

/* CONFIRMATION/thanks.php */
.confirmation {
  background: #F4F4F6;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(30,50,92,0.07);
}
.confirmation .cta-button {
  margin-top: 18px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #181818ee;
  color: #fff;
  z-index: 3000;
  padding: 18px 18px 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 22px rgba(30,50,92,0.18);
  font-size: 1rem;
  animation: cookie-slidein 0.75s cubic-bezier(.45,.85,.44,.94) 1;
}
@keyframes cookie-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  max-width: 720px;
  margin-right: 18px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 26px;
  border-radius: 21px;
  background: #fff;
  color: #181818;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(18,22,28,0.06);
  margin-right: 3px;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #39B58D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1E325C;
  color: #fff;
}
.cookie-btn.reject {
  background: #C0C0CB;
  color: #181818;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #181818;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #39B58D;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #39B58D;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,32,36, 0.78);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.4s cubic-bezier(.42,.7,.32,.91) 1;
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #181818;
  border-radius: 14px;
  padding: 38px 34px 34px 34px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 12px 32px rgba(30,50,92,.12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  color: #181818;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0;
}
.cookie-category {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-category label {
  font-size: 1rem;
  color: #222;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #1E325C;
}
.cookie-category.essential label {
  font-weight: 600;
  color: #1E325C;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #39B58D;
}
@media (max-width: 520px) {
  .cookie-modal-content { padding: 23px 6px 18px 12px; min-width: 0; }
}

/* UTILITY CLASSES AND MISC */
.hidden { display: none !important; }
.fade-in { animation: fade-in 0.5s ease-in; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* MICRO-INTERACTIONS & TRANSITIONS */
a, nav a, .cta-button, .service-card, .feature, .card, .footer-nav a, .footer-social-links img, .mobile-menu-toggle, .mobile-nav a, .cookie-btn, .cookie-modal-close {
  transition: all 0.17s cubic-bezier(.42,.7,.32,.91);
}

/* RESPONSIVE FONT SCALE */
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.63rem; }
  h2, .h2 { font-size: 1.22rem; }
  h3, .h3 { font-size: 1rem; }
  .cta-button { font-size: 1rem; }
}

/* SELECTION COLORING FOR ACCESSIBILITY */
::selection {
  background: #1E325C;
  color: #fff;
}
::-moz-selection {
  background: #1E325C;
  color: #fff;
}

/* ACCESSIBLE FOCUS RING */
:focus {
  outline: 2px dashed #39B58D;
  outline-offset: 2px;
}

/* SCROLLBAR MONOCHROME */
::-webkit-scrollbar {
  width: 10px;
  background: #e7e7ef;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c8;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: #1E325C; }

/* Z-INDEX LAYERING */
header { z-index: 102; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3500; }

/* END OF STYLE.CSS  */
