

/* CSS Custom Properties - Comprehensive Color System */
:root {
  /* Primary Brand Colors */
  --primary-color: #023047;
  --secondary-color: #FFD03D;
  --secondary-color-alt: #FFB703;
  --accent-color: #2BDA97;
  
  /* Base Colors */
  --white: #fff;
  --black: #000;
  --text-color: #000;
  --text-color-light: #666;
  --text-color-medium: #555;
  --text-color-muted: #999;
  --text-color-dark: #333;
  
  /* Background Colors */
  --bg-primary: #fff;
  --bg-secondary: #f8f9fa;
  --bg-light: #f8f9fa;
  --bg-dark: #023047;
  --bg-darker: #034066;
  --bg-gradient-dark: linear-gradient(145deg, var(--primary-color), var(--bg-darker));
  --bg-gradient-light: linear-gradient(145deg, var(--white), var(--bg-light));
  
  /* Yellow Color Palette - Unified */
  --yellow-primary: #FFD03D;
  --yellow-secondary: #FFB703;
  --yellow-text: #B8860B;
  --yellow-accessible: #DAA520;
  --yellow-light: rgba(255, 208, 61, 0.1);
  --yellow-medium: rgba(255, 208, 61, 0.2);
  --yellow-shadow: rgba(255, 208, 61, 0.3);
  --yellow-focus: rgba(255, 208, 61, 0.25);
  --yellow-ultra-light: rgba(255, 208, 61, 0.05);
  
  /* Shadow & Effects */
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --shadow-darker: rgba(0, 0, 0, 0.3);
  --shadow-strongest: rgba(0, 0, 0, 0.5);
  --shadow-text: rgba(0, 0, 0, 0.5);
  --shadow-text-light: rgba(0, 0, 0, 0.3);
  --shadow-text-subtle: rgba(0, 0, 0, 0.1);
  --shadow-text-extra-light: rgba(0, 0, 0, 0.2);
  --shadow-card: 0 5px 15px var(--shadow-light);
  --shadow-card-hover: 0 15px 30px var(--shadow-medium);
  --shadow-card-strong: 0 8px 32px var(--shadow-medium);
  --shadow-card-subtle: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-weak: 0 4px 12px var(--shadow-medium);
  --shadow-hero: 0 10px 20px var(--shadow-light);
  --shadow-feature: 0 20px 40px var(--shadow-medium);
  --shadow-elevated: 0 4px 15px var(--shadow-medium);
  --shadow-elevated-strong: 0 4px 15px var(--shadow-dark);
    /* Border Colors */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.125);
  --border-white: rgba(255, 255, 255, 0.2);
  --border-white-subtle: rgba(255, 255, 255, 0.1);
  --border-primary-light: rgba(2, 48, 71, 0.1);
  
  /* Overlay & Background Effects */
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  --bg-white-transparent: rgba(255, 255, 255, 0.9);
  --text-white-primary: rgba(255, 255, 255, 0.95);
  --text-white-secondary: rgba(255, 255, 255, 0.9);
  --text-white-muted: rgba(255, 255, 255, 0.8);
  
  /* Interactive States */
  --hover-transform: translateY(-5px);
  --focus-outline: 0 0 0 0.25rem var(--yellow-focus);
  
  /* Typography Colors */
  --heading-color: var(--primary-color);
  --body-text: var(--text-color);
  --link-color: var(--primary-color);
  --link-hover: var(--yellow-text);
}

/* Apply fonts globally */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Modern navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
}

.navbar .logo a {
  display: block;
  text-decoration: none;
}

.navbar .logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

/* Desktop Navigation - nur ab 992px */
@media (min-width: 992px) {
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
}

.navbar .nav-links li a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: var(--yellow-text);
}

.navbar .nav-links li a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle i {
  font-size: 2rem;
  color: var(--primary-color);
}

.value-card {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-hero);
  transition: all 0.3s ease;
  height: 100%;
  padding: 2.5rem 1.5rem;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

.value-card h3 {
  margin: 1.5rem 0 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.value-card p {
  color: var(--text-color-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.value-card:hover .icon-circle {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--yellow-medium);
}

.burger .line {
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Contact Button Styles */
.contact-button .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.contact-button .btn:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--yellow-medium);
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-section .position-relative {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--shadow-strongest), var(--shadow-strongest));
  z-index: 1;
}

.hero-section h1,
.hero-section .lead {
  color: var(--white);
  text-shadow: 2px 2px 4px var(--shadow-strongest);
}

.hero-section .btn-outline-dark {
  color: var(--white);
  border-color: var(--white);
  text-shadow: 1px 1px 2px var(--shadow-darker);
}

.hero-section .btn-outline-dark:hover {
  background-color: var(--white);
  color: var(--primary-color);
  text-shadow: none;
}

.hero-section .stats-card {
  background-color: var(--bg-white-transparent);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.text-gradient {
  color: var(--white);
}

.stats-card {
  width: 12rem;
  height: 12rem;
  background: var(--secondary-color);
  backdrop-filter: blur(5px);
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--secondary-color);
}

.stats-card .stats-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stats-card:hover .stats-icon {
  transform: scale(1.2);
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--yellow-medium);
}

.stats-card h2 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  line-height: 1;
}

.stats-card p {
  color: var(--primary-color);
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-stats .stat-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-hero);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hero-stats .stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  color: var(--text-color-light);
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-section .d-flex {
    justify-content: center;
  }
  
  .stats-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.about-section {
  background-color: var(--light-bg);
}

.about-image {
  box-shadow: 0 20px 40px var(--shadow-medium);
  border-radius: 1rem;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--yellow-medium), var(--yellow-light));
  pointer-events: none;
}

.about-image:hover .image-overlay {
  opacity: 0.2;
}

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(145deg, var(--secondary-color), var(--yellow-primary));
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px var(--yellow-medium);
  animation: float 3s ease-in-out infinite;
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-color);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  color: var(--dark-color);
  text-align: center;
  margin-top: 0.2rem;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px var(--shadow-medium);
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-card .card-icon {  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--secondary-color), var(--yellow-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card .card-icon i {
  color: var(--dark-color);
  font-size: 1.2rem;
}

.floating-card .card-stats {
  display: flex;
  flex-direction: column;
}

.floating-card .number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-color);
  line-height: 1;
}

.floating-card .text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }
  
  .experience-badge .number {
    font-size: 1.5rem;
  }
  
  .experience-badge .text {
    font-size: 0.8rem;
  }
  
  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

.feature-grid {
  display: grid;
  gap: 0.1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  margin: 0.5rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-color-medium);
  margin: 0;
}

.coaching-quote {
  position: relative;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, var(--yellow-light), var(--yellow-ultra-light));
  border-radius: 1rem;
  margin: 2rem 0;
}

.coaching-quote i {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--yellow-text);
  background: white;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.coaching-quote p {
  margin: 0;
  color: var(--dark-color);
  font-style: italic;
  font-size: 1.25rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.about-section .row {
  --bs-gutter-y: 2rem;
}

.about-content {
  padding-left: 1rem;
}

@media (max-width: 992px) {
  .about-content {
    padding-left: 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-content {
    text-align: center;
    padding-left: 0;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .coaching-quote {
    text-align: left;
  }
}

/* About Hero Section */
.about-hero-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--white), var(--bg-light));
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-image {
    position: relative;
    z-index: 2;
}

.about-hero-image img {
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.about-hero-image:hover img {
    transform: translateY(-10px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-hero);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.hero-stats .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: var(--text-color-light);
    font-size: 1rem;
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-hero);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.hero-stats .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: var(--text-color-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Timeline Styles */
.timeline-section {
    position: relative;
    background: var(--white);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-badge {
    position: absolute;
    top: 0;
    right: -1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-badge {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--yellow-shadow);
}

.timeline-item:nth-child(even) .timeline-badge {
    right: auto;
    left: -1.5rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 4rem;
    }

    .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        left: 0.25rem;
        right: auto;
    }
}

/* Team Cards Animation */
.team-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.team-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
.team-section {
    background: linear-gradient(145deg, var(--white), var(--bg-light));
    padding: 6rem 0;
}

.team-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.team-image {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-content .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-content .description {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--yellow-text);
    transform: translateY(-3px);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(145deg, var(--primary-color), var(--bg-darker));
    color: var(--white);
    padding: 4rem 0;
}

.cta-section .lead {
    color: var(--bg-white-transparent);
}

/* Modern Footer Styles */
.footer {
    background: linear-gradient(145deg, var(--primary-color), var(--bg-darker));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-heading {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-white-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.footer-contact a {
    color: var(--text-white-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-divider {
    border-color: var(--border-white-subtle);
    margin: 2rem 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-legal a {
    color: var(--text-white-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .footer-heading {
        margin-top: 2rem;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero-section {
        padding: 4rem 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 4rem;
    }

    .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        left: 0.25rem;
        right: auto;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--white), var(--bg-light));
}

.philosophy-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), var(--yellow-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px var(--shadow-medium);
}

.philosophy-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;  border-radius: 1rem;
  background: linear-gradient(145deg, var(--secondary-color), var(--yellow-primary));
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.philosophy-card:hover .card-icon {
  transform: scale(1.1);
}

.philosophy-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.philosophy-list-dark {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.philosophy-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--white);
}

.philosophy-list-dark li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--primary-color);
}


.philosophy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.philosophy-list-dark li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.philosophy-card p {
  color: var(--text-color-light);
  line-height: 1.6;
  margin: 0;
}

.philosophy-quote {
  max-width: 800px;
  margin: 4rem auto 0;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.philosophy-quote::before {
  content: '"';
  font-size: 5rem;
  line-height: 1;
  font-family: serif;
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.philosophy-quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blockquote-footer {
  color: var(--text-color-light);
  font-size: 1rem;
}

/* Methodology Section - Flip Cards */
.methodology-cards {
    padding: 2rem 0;
}

.flip-card {
    perspective: 1500px;
    width: 100%;
    height: 420px;
    margin-bottom: 2.5rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front {
    background: var(--white);
    box-shadow: 0 4px 15px var(--shadow-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2rem;
}

.flip-card-front .content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front .arrow-hint {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.flip-card:hover .arrow-hint {
    transform: translateX(5px);
}

.flip-card-back {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
    box-shadow: 0 4px 15px var(--shadow-dark);
    padding: 2rem;
}

.flip-card-back .philosophy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.flip-card-back .philosophy-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.flip-card-back .philosophy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    text-shadow: 1px 1px 1px var(--shadow-dark);
}

.flip-card-back p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-white-primary);
    text-shadow: 1px 1px 1px var(--shadow-medium);
    padding: 0 0.5rem;
}

.flip-card-back .philosophy-list {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .flip-card {
        height: 380px;
        margin-bottom: 2rem;
    }

    .flip-card-front {
        padding: 2rem 1.5rem;
    }

    .flip-card-back {
        padding: 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-light), var(--white));
}

.price-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.875rem;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-icon {
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price {
    margin: 1rem 0;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    font-size: 1rem;
    color: var(--text-color-light);
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.price-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-features li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-search-container {
    max-width: 600px;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background: var(--white);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-medium);
}

.accordion-body {
    padding: 1.25rem;
    background: var(--white);
}

.no-results-message {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--text-color-light);
}

.no-results-message.show {
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--white), var(--bg-light));
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 992px) {
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px var(--shadow-light);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px var(--shadow-medium);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.testimonial-stars {
    color: var(--yellow-accessible);
    font-size: 0.875rem;
}

.achievement-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--yellow-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

/* Video Testimonials */
.video-testimonial-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px var(--shadow-medium);
  transition: transform 0.3s ease;
}

.video-testimonial-card:hover {
  transform: translateY(-5px);
}

.video-testimonial-card h4 {
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.video-testimonial-card p {
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--white), var(--bg-light));
}

.contact-info-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.contact-info-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-item p, 
.contact-info-item a {
    color: var(--text-color-light);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--yellow-text);
}

.contact-social {
    text-align: center;
}

.contact-social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.contact-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 0.5rem;
    border: 1px solid var(--border-medium);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem var(--yellow-focus);
}

/* Legal Content Styles */
.legal-content {
    padding-top: 2rem;
}

.legal-content .card {
    border: none;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.legal-content .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.legal-content .card-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-details-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-details-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-details-card .info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.right-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.right-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.breadcrumb {
    padding: 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px var(--shadow-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--yellow-text);
}

.breadcrumb-item.active {
    color: var(--yellow-text);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 -5px 15px var(--shadow-medium);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-content .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content .btn {
        width: 100%;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px var(--shadow-medium);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-dark);
    background: var(--primary-color);
    color: var(--white);
}

/* Testimonials Hero Section */
.testimonials-hero {
    padding-top: 120px;
    background: linear-gradient(145deg, var(--yellow-light), var(--yellow-ultra-light));
}

.testimonial-filters {
    position: relative;
}

.btn-filter {
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.featured-testimonial {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Methodology Puzzle Styles */
.methodology-puzzle {
    padding: 2rem 0;
}

.puzzle-piece {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px var(--shadow-medium);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    margin: 1rem;
    border: 2px solid var(--primary-color);
}

.puzzle-piece:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-dark);
    border-color: var(--secondary-color);
}

.puzzle-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.puzzle-piece:hover .puzzle-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.puzzle-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.puzzle-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.puzzle-content p {
    color: var(--text-color-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.puzzle-piece:hover .puzzle-content h3 {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .puzzle-piece {
        margin: 0.5rem;
    }
}

/* Development Timeline Styles */
.development-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.development-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;    transition: all 0.3s ease;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 6px var(--border-primary-light);
}

.timeline-step:hover .timeline-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-medium);
    width: 450px;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 2rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    top: 30px;    left: -10px;
    box-shadow: -5px 5px 5px var(--shadow-light);
}

.timeline-step:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-color-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .development-timeline::before {
        left: 40px;
    }

    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .timeline-content {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }

    .timeline-content::before {
        left: 20px;
        top: -10px;
        transform: rotate(135deg);
    }

    .timeline-icon {
        margin-left: 0;
    }
}

/* Partner & Sponsoren Section */
.partners-section {
  background-color: var(--light-bg);
}

.partner-logo,
.sponsor-logo {
  max-height: 80px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover,
.sponsor-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Placeholder Styles */
.img-fluid[src*="placehold.co"] {
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.img-fluid[src*="placehold.co"]:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px var(--shadow-medium);
}

.sponsor-logo[src*="placehold.co"] {
    border-radius: 0.5rem;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.sponsor-logo[src*="placehold.co"]:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Video Placeholder Styles */
iframe[src*="placehold.co"] {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

iframe[src*="placehold.co"]:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* --- about-card.css --- */
/* Styles für About Cards */
.about-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), #FFD03D);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card .card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--secondary-color), #FFD03D);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
  transform: scale(1.1);
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-list-dark {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.about-list-dark li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--primary-color);
}

.about-list-dark li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.about-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* --- mobile-navigation.css --- */
/* Mobile Navigation Styles */

@media (max-width: 991.98px) {
  .burger {
    display: flex;
    z-index: 1001;
  }

  .navbar {
    padding: 1rem 5%;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.5s ease;
    list-style: none;
    margin: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
  }

  .navbar .nav-links li a {
    font-size: 1.2rem;
  }

  .burger.toggle .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.toggle .line:nth-child(2) {
    opacity: 0;
  }

  .burger.toggle .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    padding: 0.75rem 4%;
  }

  .contact-button {
    display: none;
  }

  .nav-links .mobile-contact-button {
    display: block;
    margin-top: 1.5rem;
  }

  .nav-links .mobile-contact-button .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
  }

  .nav-links .mobile-contact-button .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
  }
}

/* --- cookie-consent.css --- */
/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 9999;
    padding: 1rem 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-consent-banner h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-banner p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cookie-consent-banner a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .cookie-consent-content {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}
