/* FusionFitness Ulmen - Hauptstylesheet
   Erstellt am: 04.04.2025
   Autor: Cascade AI
*/

:root {
  /* Hauptfarbschema */
  --primary: #ffcc00; /* Hauptfarbe Gelb */
  --dark-bg: #121212; /* Dunkler Hintergrund */
  --darker-bg: #0a0a0a; /* Dunklerer Hintergrund */
  --light-text: #ffffff; /* Heller Text */
  --gray-text: #aaaaaa; /* Grauer Text */
  --accent: #2a2a2a; /* Akzentfarbe für Karten, etc. */
  --hover: #ffdd33; /* Hover-Effekt für primäre Elemente */
  
  /* Abstände */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Schriftarten */
  --font-main: 'Montserrat', sans-serif;
  --font-headings: 'Raleway', sans-serif;
}

/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin-top: var(--spacing-xs);
  /* margin-left: auto; */
  margin-right: auto;
}


.cta-left h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin-top: var(--spacing-xs);
  margin-left: inherit;
  margin-right: auto;
}

.section-title h2:after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--hover);
}

/* Container & Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* Flexbox Hilfklassen */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

/* Grid Hilfklassen */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2-max-400 {
  grid-template-columns: repeat(2, 400px);
  justify-content: center;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark-bg);
}

.btn-primary:hover {
  background-color: var(--hover);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 60px;
  transition: height 0.3s ease;
}

.header.scrolled .logo {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-item {
  margin-left: var(--spacing-md);
  position: relative;
}

.nav-link {
  color: var(--light-text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.nav-link:hover:after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.dropdown-toggle i.fa-chevron-down{
  margin-left: 10px; 
  font-size: 1rem;
}

.dropdown:hover .dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--darker-bg);
  border-radius: 5px;
  width: 250px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--light-text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--primary);
  padding-left: 2rem;
}

.nav-cta {
  margin-left: var(--spacing-md);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
  width: 30px;
  height: 20px;
  position: relative;
}

.bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.bar.active:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.bar.active:nth-child(2) {
  opacity: 0;
}

.bar.active:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-color: var(--darker-bg);
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg-new.jpg'); */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://img.freepik.com/premium-photo/low-section-man-lifting-barbell-gym_1048944-24576989.jpg?w=996');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: 900px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--dark-bg), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  background-color: rgba(10, 10, 10, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(-50px);
  opacity: 0;
  /* animation: slideInHero 1s forwards 0.5s; */
  animation: slideInHero 0.3s forwards 0.3s;
}



@keyframes slideInHero {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.hero h1 {
  margin-top: 1rem;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.hero-cta {
  margin-top: var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  animation: fadeInUp 1s forwards 1.5s;
  opacity: 1;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-indicator-text {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--light-text);
  font-weight: 500;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  width: 6px;
  height: 10px;
  background-color: var(--primary);
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  border-radius: 10px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Page Header für Unterseiten */
.page-header {
  height: 35vh;
  background-color: var(--darker-bg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://img.freepik.com/premium-photo/low-section-man-lifting-barbell-gym_1048944-24576989.jpg?w=996');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  /* margin-top: 80px; */
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--dark-bg), transparent);
}

.page-header h1 {
  position: relative;
  font-size: 3.5rem;
  color: var(--light-text);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .page-header {
    height: 50vh;
  }
}

.breadcrumb {
  position: relative;
  font-size: 1rem;
  color: var(--gray-text);
}

.breadcrumb a {
  color: var(--primary);
}

/* Features Section - Neue Version */
.features {
  background-color: var(--accent);
  padding: var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg-new.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.features-container {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  gap: 30px;
}

.features-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  gap: 0.5rem;
}

.feature-tab {
  background-color: var(--dark-bg);
  color: var(--gray-text);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.feature-tab:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.feature-tab.active {
  background-color: var(--primary);
  color: var(--dark-bg);
  opacity: 1;
}

.features-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* overflow: hidden; */
}

.feature-category {
  display: none;
  animation: fadeIn 0.5s ease;
}

.feature-category.active {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  width: 100%;
}

.feature-category-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  background-color: var(--dark-bg);
  padding: var(--spacing-md);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 3px solid transparent;
  max-width: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--primary);
}

.feature-card:hover .feature-icon {
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--light-text);
}

.feature-description {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.features-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-md);
  gap: 1rem;
}

.features-nav-btn {
  background-color: var(--dark-bg);
  color: var(--light-text);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.features-nav-btn:hover {
  background-color: var(--primary);
  color: var(--dark-bg);
}

.features-indicators {
  display: flex;
  gap: 0.5rem;
}

.feature-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--dark-bg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-indicator.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .feature-category-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-category-inner {
    grid-template-columns: 1fr;
  }
  
  .features-tabs {
    flex-wrap: wrap;
  }
  
  .feature-tab {
    width: auto;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

/* Instagram Feed Section - Neue Version */
.instagram-section {
  position: relative;
  background-color: var(--dark-bg);
  padding: var(--spacing-lg) 0;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.07) 0%, transparent 70%);
  z-index: 0;
}

.instagram-content {
  position: relative;
  z-index: 1;
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.instagram-title-area {
  max-width: 60%;
}

.instagram-title-area p {
  margin-top: 1rem;
  color: var(--gray-text);
}

.instagram-follow {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.instagram-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.instagram-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.instagram-feed {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 20px;
  height: 650px;
}

.insta-post {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background-color: var(--accent);
  transition: all 0.4s ease;
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.insta-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.insta-post::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(10 10 10), transparent);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta-post:hover::after {
  opacity: 1;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-post:hover img {
  transform: scale(1.05);
}

.insta-post-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.insta-post:hover .insta-post-info {
  opacity: 1;
  transform: translateY(0);
}

.insta-post-date {
  font-size: 0.8rem;
  color: var(--light-text);
  margin-bottom: 5px;
}

.insta-post-caption {
  font-size: 0.95rem;
  color: var(--light-text);
  font-weight: 500;
  line-height: 1.4;
}

.insta-stats {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.insta-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--light-text);
}

.insta-stat i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Positionierung der Posts */
.insta-post-1 {
  grid-column: 1 / span 4;
  grid-row: 1 / span 4;
}

.insta-post-2 {
  grid-column: 5 / span 4;
  grid-row: 1 / span 3;
}

.insta-post-3 {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
}

.insta-post-4 {
  grid-column: 1 / span 3;
  grid-row: 5 / span 2;
}

.insta-post-5 {
  grid-column: 4 / span 3;
  grid-row: 4 / span 3;
}

.insta-post-6 {
  grid-column: 7 / span 3;
  grid-row: 4 / span 3;
}

.insta-post-7 {
  grid-column: 10 / span 3;
  grid-row: 3 / span 4;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.insta-post:hover .instagram-overlay {
  opacity: 0.3;
  pointer-events: auto;
}

.instagram-cta {
  position: relative;
  margin-top: var(--spacing-md);
  text-align: center;
}

.instagram-cta p {
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.instagram-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: var(--accent);
  color: var(--light-text);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.instagram-cta-button:hover {
  background-color: transparent;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.instagram-cta-button i {
  color: var(--primary);
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .instagram-feed {
    height: auto;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 15px;
  }
  
  .insta-post {
    height: 250px;
  }
  
  .insta-post-1 {
    grid-column: 1 / span 3;
    grid-row: auto;
  }
  
  .insta-post-2 {
    grid-column: 4 / span 3;
    grid-row: auto;
  }
  
  .insta-post-3 {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
  
  .insta-post-4 {
    grid-column: 3 / span 2;
    grid-row: auto;
  }
  
  .insta-post-5 {
    grid-column: 5 / span 2;
    grid-row: auto;
  }
  
  .insta-post-6, .insta-post-7 {
    display: none;
  }
  
  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .instagram-title-area {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insta-post-1, .insta-post-2, .insta-post-3, .insta-post-4 {
    grid-column: auto / span 1;
  }
  
  .insta-post-5 {
    display: none;
  }
}

/* Über uns Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
  background-image: url('../images/about-bg.webp');
  background-size: cover;
  background-position: center;
}

.about-content {
  max-width: 600px;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); */
}

.about-image img {
  width: 100%;
  display: block;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-members {
  margin-top: var(--spacing-lg);
}

.team-card {
  background-color: var(--accent);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: var(--spacing-sm);
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-position {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Angebote Section */
.services {
  background-color: var(--darker-bg);
}

.service-card {
  background-color: var(--accent);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: var(--spacing-sm);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Preise Section */
.pricing {
  background-color: var(--accent);
}

.price-card {
  background-color: var(--dark-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-header {
  padding: var(--spacing-md);
  background-color: var(--darker-bg);
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 5px;
  margin-top: 10px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  font-size: 0.9rem;
  color: var(--gray-text);
}

.price-features {
  padding: var(--spacing-md);
  list-style: none;
}

.price-feature {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-feature:last-child {
  border-bottom: none;
}

.price-cta {
  padding: 0 var(--spacing-md) var(--spacing-md);
}

.price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary);
  color: var(--dark-bg);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Kontakt Section */
.contact {
  background-color: var(--darker-bg);
}

.contact-info {
  background-color: var(--accent);
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
}

.contact-item {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: var(--spacing-sm);
}

/* Footer */
.footer {
  background-color: var(--darker-bg);
  padding: var(--spacing-md) 0;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: var(--spacing-sm);
}

.social-links {
  margin-bottom: var(--spacing-md);
}

.social-link {
  font-size: 1.5rem;
  color: var(--light-text);
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-nav {
  margin-bottom: var(--spacing-md);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-item {
  margin: 0 15px;
}

.footer-nav-link {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-sm);
  color: var(--gray-text);
  font-size: 0.8rem;
}

/* Loader Animation */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--darker-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(255, 204, 0, 0.1);
  border-top-color: var(--primary);
  animation: spin 1s infinite linear;
}

.loader-logo {
  position: absolute;
  width: 60px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-content {
  position: absolute;
  width: 80%;
  max-width: 1200px;
  height: 80%;
  display: flex;
  flex-direction: column;
}

.loader-header,
.loader-text,
.loader-button {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-header {
  height: 60px;
  margin-bottom: 30px;
  width: 60%;
}

.loader-text {
  height: 20px;
  margin-bottom: 10px;
  width: 100%;
}

.loader-button {
  height: 40px;
  width: 120px;
  margin-top: 20px;
}

.loader-header::after,
.loader-text::after,
.loader-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 1.5s infinite;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2-max-400 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  
  .price-card {
    width: 100%;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  
  .nav-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--darker-bg);
    flex-direction: column;
    align-items: center;
    padding-top: var(--spacing-lg);
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  .nav-item {
    margin: 0 0 var(--spacing-md) 0;
  }
  
  .dropdown-item:hover {
    padding-left: 1rem;
  }
  
  .nav-cta {
    margin: var(--spacing-sm) 0 0 0;
    width: 80%;
  }
  
  .mobile-toggle {
    display: block;
    margin-left: auto;
    margin-right: 10%;
  }
  
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-2-max-400 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-image {
    margin-top: var(--spacing-md);
  }
  
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
  
  .hero-btn {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
    width: 100%;
    text-align: center;
  }
  
  .hero-cta {
    flex-direction: column;
  }
}

/* Neu gestaltete CTA-Section */
.cta-section {
  padding: 60px 0;
  position: relative;
  background-color: var(--darker-bg);
  overflow: hidden;
}

.cta-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: linear-gradient(145deg, #242424, #303030);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cta-background-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.cta-background-shapes .shape-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: 10%;
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.1), rgba(255, 204, 0, 0.05));
  animation: float 8s ease-in-out infinite;
}

.cta-background-shapes .shape-2 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: 15%;
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
  animation: float 6s ease-in-out infinite 1s;
}

.cta-background-shapes .shape-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 5%;
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.08), rgba(255, 204, 0, 0.03));
  animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.cta-content {
  display: flex;
  align-items: center;
  padding: 40px 50px;
  gap: 40px;
}

.cta-left {
  flex: 1;
}

.cta-left h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.cta-left p {
  font-size: 1.05rem;
  color: var(--light-text);
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.cta-icon i {
  font-size: 30px;
  color: var(--dark-bg);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.cta-buttons .btn {
  padding: 12px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-buttons .btn i {
  font-size: 0.9rem;
}

.cta-buttons .btn-primary {
  background-color: var(--primary);
  color: var(--dark-bg);
  border: 2px solid var(--primary);
}

.cta-buttons .btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--light-text);
  transform: translateY(-2px);
  color: var(--light-text);
}

.cta-buttons .btn-outline {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Media Queries für CTA-Section */
@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .cta-left {
    margin-bottom: 20px;
  }
  
  .cta-left h2 {
    font-size: 2.2rem;
  }
  
  .cta-right {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 40px 0;
  }
  
  .cta-content {
    padding: 30px 20px;
  }
  
  .cta-left h2 {
    font-size: 1.8rem;
  }
  
  .cta-left p {
    font-size: 1rem;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .cta-icon i {
    font-size: 24px;
  }
}

/* Neu gestaltete Vision Section */
.vision-section {
  padding: 50px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.vision-wrapper {
  position: relative;
}

/* .vision-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.vision-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
} */

.vision-separator {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
  position: relative;
}

.vision-separator::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  background: rgba(255, 204, 0, 0.5);
  left: -60px;
  top: 0;
}

.vision-separator::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  background: rgba(255, 204, 0, 0.5);
  right: -60px;
  top: 0;
}

.vision-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.vision-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  position: relative;
  transition: all 0.3s ease;
}

.vision-card-inner {
  background: linear-gradient(145deg, #242424, #303030);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.vision-card:hover .vision-card-inner {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.vision-icon-container {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vision-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(45deg, var(--primary), rgba(255, 204, 0, 0.8));
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.vision-card:hover .vision-icon-bg {
  transform: rotate(135deg);
}

.vision-icon-container i {
  font-size: 28px;
  color: var(--dark-bg);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.vision-content {
  position: relative;
  z-index: 1;
}

.vision-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.vision-content p {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

/* Media Queries für Vision Section */
@media (max-width: 992px) {
  .vision-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .vision-card {
    flex: 0 0 calc(50% - 15px);
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 40px 0;
  }
  
  .vision-card {
    flex: 0 0 100%;
  }
  
  .vision-header h2 {
    font-size: 2rem;
  }
  
  .vision-separator::before,
  .vision-separator::after {
    display: none;
  }
}

/* Neu gestaltete Testimonials Section */
.testimonial-compact-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
}

.testimonial-compact-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.03) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.testimonial-compact-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 70%, rgba(255, 204, 0, 0.03) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
  pointer-events: none;
}

.testimonial-slider-container {
  position: relative;
  max-width: 850px;
  margin: 40px auto 0;
  overflow: hidden;
}

.testimonial-compact-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-compact-item {
  min-width: 100%;
  padding: 20px;
}

.testimonial-compact-content {
  background: linear-gradient(145deg, #232323, #2c2c2c);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  border-left: 3px solid var(--primary);
}

.testimonial-compact-content::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: 15px;
  left: 15px;
}

.testimonial-compact-content p {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-compact-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-compact-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.testimonial-compact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-compact-info h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.testimonial-compact-info span {
  display: block;
  font-size: 0.85rem;
  color: var(--light-text);
  opacity: 0.8;
}

.testimonial-nav-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-nav-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 204, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-dots .dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Media Queries für das kompakte Testimonial-Design */
@media (max-width: 768px) {
  .testimonial-compact-content {
    padding: 25px 20px;
  }
  
  .testimonial-compact-content p {
    font-size: 1rem;
  }
  
  .testimonial-compact-avatar {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .testimonial-compact-content {
    padding: 20px 15px;
  }
  
  .testimonial-compact-content p {
    font-size: 0.95rem;
  }
  
  .testimonial-compact-avatar {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-compact-info h4 {
    font-size: 0.95rem;
  }
  
  .testimonial-compact-info span {
    font-size: 0.8rem;
  }
}

/* Überarbeitete FAQ Sektion */
.pricing-faq {
  padding: 80px 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.pricing-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.faq-item {
  background: linear-gradient(145deg, #232323, #2b2b2b);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 3px solid rgba(255, 204, 0, 0.2);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--primary);
}

.faq-item.active {
  background: linear-gradient(145deg, #252525, #2d2d2d);
  border-left: 3px solid var(--primary);
}

.faq-question {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--light-text);
  margin: 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Testimonials on Pricing Page */
.pricing-testimonial {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pricing-testimonial::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, rgba(255, 204, 0, 0.02) 50%, transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.pricing-testimonial::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, rgba(255, 204, 0, 0.02) 50%, transparent 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Überarbeitete FAQ Sektion */
.pricing-faq {
  padding: 80px 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.pricing-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.faq-item {
  background: linear-gradient(145deg, #232323, #2b2b2b);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 3px solid rgba(255, 204, 0, 0.2);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--primary);
}

.faq-item.active {
  background: linear-gradient(145deg, #252525, #2d2d2d);
  border-left: 3px solid var(--primary);
}

.faq-question {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--light-text);
  margin: 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Testimonial-Sektion Überarbeitung */
.testimonial-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before,
.testimonial-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.05) 0%, rgba(255, 204, 0, 0.02) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.testimonial-section::before {
  top: -100px;
  left: -100px;
}

.testimonial-section::after {
  bottom: -100px;
  right: -100px;
}

.testimonial-container {
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  margin-top: 40px;
  position: relative;
}

.testimonial-slide {
  background: linear-gradient(145deg, #222222, #2a2a2a);
  border-radius: 16px;
  padding: 40px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary);
}

.testimonial-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 25%;
  right: 20%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  padding-left: 10px;
}

.testimonial-content p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: var(--primary);
  opacity: 0.5;
  border-radius: 3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author div h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.testimonial-author div p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.8;
}

.testimonial-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-tag {
  display: inline-block;
  background: rgba(255, 204, 0, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Neu gestaltete Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: 0px;
  left: 100px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.team-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 70%, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  top: 0px;
  right: 0px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.team-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.team-category {
  background: linear-gradient(145deg, #242424, #303030);
  border: none;
  color: var(--light-text);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.team-category.active {
  color: var(--primary);
}

.team-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.team-category:hover, 
.team-category.active {
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg, var(--primary), var(--hover));
}

.team-category:hover::before, 
.team-category.active::before {
  opacity: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.team-member {
  margin-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.team-member.hidden {
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  pointer-events: none;
}

.team-member-inner {
  position: relative;
  background: linear-gradient(145deg, #242424, #303030);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  transition: all 0.3s ease;
}

.team-member-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.team-photo {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member-inner:hover .team-photo img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(36, 36, 36, 1) 0%, rgba(36, 36, 36, 0) 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.team-member-inner:hover .team-overlay {
  opacity: 0.9;
}

.team-content {
  padding: 25px;
  position: relative;
}

.team-top-info {
  margin-bottom: 15px;
}

.team-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.team-position {
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.8;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-description p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.5;
  margin-bottom: 15px;
}

.team-expertise {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.team-expertise li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  color: var(--light-text);
  font-size: 0.9rem;
}

.team-expertise li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #292929, #353535);
  color: var(--primary);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.team-social-link:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--dark-text);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* Media Queries für Team Section */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .team-photo {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .team-categories {
    flex-wrap: wrap;
  }
  
  .team-category {
    flex: 0 0 calc(50% - 10px);
    text-align: center;
    max-width: 70%;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .team-header h2 {
    font-size: 2rem;
  }
  
  .team-header p {
    font-size: 1rem;
  }
  
  .team-category {
    flex: 0 0 100%;
  }
  
  .team-photo {
    height: 220px;
  }
}

/* Aktualisierte Team Section mit Hover-Effekt */
.team-photo {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member-inner {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 16px;
  background: none;
}

.team-member-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.team-member-inner:hover .team-photo img {
  transform: scale(1.05);
}

.team-name-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  transition: all 0.3s ease;
}

.team-name-bar h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.team-position-short {
  color: var(--light-text);
  font-size: 0.9rem;
  opacity: 0.8;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
}

.team-member-inner:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team-member-inner:hover .team-name-bar {
  opacity: 0;
  visibility: hidden;
}

.team-content {
  padding: 20px;
  color: var(--light-text);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  width: 100%;
}

.team-member-inner:hover .team-content {
  transform: translateY(0);
  opacity: 1;
}

.team-top-info {
  margin-bottom: 15px;
}

.team-top-info h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.team-position {
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.8;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-description p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.5;
  margin-bottom: 15px;
}

.team-expertise {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.team-expertise li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  color: var(--light-text);
  font-size: 0.9rem;
}

.team-expertise li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: var(--primary);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.team-social-link:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--dark-text);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* Media Queries für Team Section */
@media (max-width: 992px) {
  .team-photo {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .team-photo {
    height: 320px;
  }
  
  .team-description p {
    font-size: 0.9rem;
  }
  
  .team-expertise li {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .team-photo {
    height: 300px;
  }
  
  .team-name-bar {
    padding: 15px;
  }
  
  .team-name-bar h3 {
    font-size: 1.2rem;
  }
  
  .team-top-info h3 {
    font-size: 1.2rem;
  }
  
  .team-position {
    font-size: 0.85rem;
  }
}

/* Preisseite Styles */

/* Intro-Sektion */
.pricing-intro {
  text-align: center;
  padding: 60px 0 30px;
}

.pricing-slogan {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.pricing-slogan::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 30px auto 0;
  color: var(--light-text);
  line-height: 1.6;
}

.pricing-description .highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Haupt-Preiskarte */
.pricing-main {
  padding: 30px 0 60px;
  position: relative;
}

.pricing-card-main {
  background: linear-gradient(145deg, #242424, #303030);
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary);
}

.pricing-card-main::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.05) 50%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
}

.pricing-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark-text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.pricing-badge i {
  margin-right: 5px;
}

.pricing-card-header h3 {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 15px;
}

.pricing-amount {
  margin: 20px 0;
}

.pricing-amount .price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-amount .period {
  font-size: 1.2rem;
  color: var(--light-text);
  opacity: 0.8;
}

.pricing-fee {
  font-size: 1rem;
  color: var(--light-text);
  opacity: 0.7;
  margin-bottom: 25px;
}

.pricing-card-features {
  margin: 30px 0;
}

.pricing-card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--light-text);
  font-size: 1rem;
}

.pricing-card-features li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.pricing-card-cta {
  margin-top: 30px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.1rem;
}

/* Vorteile-Sektion */
.pricing-benefits {
  padding: 60px 0;
  background-color: var(--dark-bg);
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.benefits-grid:first-child {
  justify-content: space-between;
}

.benefit-card {
  background: linear-gradient(145deg, #242424, #303030);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 3px solid rgba(255, 204, 0, 0.3);
  width: 100%;
  max-width: 380px;
  flex: 1;
}

/* Media Queries für Benefits Grid */
@media (max-width: 1200px) {
  .benefits-grid {
    flex-wrap: wrap;
  }
  
  .benefit-card {
    max-width: 100%;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-card {
    max-width: 500px;
  }
}

/* Benefits-Grid Korrekturen */
.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.benefits-grid:first-child {
  justify-content: space-between;
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: linear-gradient(145deg, #242424, #303030);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 3px solid rgba(255, 204, 0, 0.3);
  width: 100%;
  max-width: 380px;
  flex: 1;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--primary);
}

.highlight-card {
  background: linear-gradient(145deg, #252525, #333333);
  border-left: 3px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 204, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-note {
  font-size: 0.85rem;
  color: var(--light-text);
  opacity: 0.7;
}

.benefit-icon i {
  font-size: 28px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 15px;
}

.benefit-note {
  font-size: 0.85rem;
  color: var(--light-text);
  opacity: 0.7;
  font-style: italic;
}

.loyalty-progress {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  position: relative;
  padding: 25px 0 0;
}

.loyalty-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  z-index: 0;
}

.loyalty-progress::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-hover));
  border-radius: 2px;
  z-index: 1;
  transform-origin: left;
  animation: progressLine 2s ease-out forwards;
}

@keyframes progressLine {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.loyalty-step {
  text-align: center;
  position: relative;
  flex: 1;
  z-index: 2;
}

.loyalty-step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--dark-bg);
  border: 2px solid var(--primary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.1);
}

.loyalty-month {
  font-size: 0.75rem;
  color: var(--light-text);
  margin-bottom: 6px;
  margin-top: 5px;
  font-weight: 500;
}

.loyalty-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.loyalty-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
}

/* Media Query Anpassungen für die Timeline auf mobilen Geräten */
@media (max-width: 992px) {
  .loyalty-progress {
    flex-direction: column;
    gap: 35px;
    padding-left: 30px;
    padding-top: 0;
  }
  
  .loyalty-progress::before {
    top: 0;
    bottom: 0;
    left: 15px;
    right: auto;
    width: 3px;
    height: 100%;
  }
  
  .loyalty-progress::after {
    top: 0;
    left: 15px;
    width: 3px;
    height: 100%;
    animation: progressLineVertical 2s ease-out forwards;
  }
  
  @keyframes progressLineVertical {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(1);
    }
  }
  
  .loyalty-step {
    text-align: left;
    padding-left: 30px;
  }
  
  .loyalty-step::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Zusatzoptionen */
.pricing-addons {
  padding: 60px 0;
}

.addons-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.addon-card {
  background: linear-gradient(145deg, #242424, #303030);
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.addon-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.addon-icon i {
  font-size: 32px;
  color: var(--primary);
}

.addon-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.addon-card p {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.addon-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}

.addon-price span {
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.8;
  font-weight: 400;
}

.addon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--dark-text);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
}

/* FAQ Sektion */
.pricing-faq {
  padding: 80px 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.pricing-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.faq-item {
  background: linear-gradient(145deg, #232323, #2b2b2b);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 3px solid rgba(255, 204, 0, 0.2);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--primary);
}

.faq-item.active {
  background: linear-gradient(145deg, #252525, #2d2d2d);
  border-left: 3px solid var(--primary);
}

.faq-question {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--light-text);
  margin: 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Testimonials on Pricing Page */
.pricing-testimonial {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pricing-testimonial::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, rgba(255, 204, 0, 0.02) 50%, transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.pricing-testimonial::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, rgba(255, 204, 0, 0.02) 50%, transparent 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Kontaktseite Styles */
.contact-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 50px;
}

/* Kontaktinformationen */
.contact-info {
  background: linear-gradient(145deg, #232323, #2c2c2c);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-icon i {
  font-size: 20px;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

.contact-card a {
  color: var(--light-text);
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary);
}

/* Öffnungszeiten */
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opening-hours h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.opening-hours h3 i {
  font-size: 20px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hours-column h4 {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 12px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.hours-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-column ul li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--light-text);
}

.hours-column ul li span {
  font-weight: 600;
  min-width: 80px;
}

.hours-note {
  font-size: 0.8rem;
  color: var(--light-text);
  opacity: 0.8;
  margin-top: 10px;
  font-style: italic;
}

/* Kontaktformular */
.contact-form-container {
  background: linear-gradient(145deg, #232323, #2c2c2c);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-tabs {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
  background: none;
  border: none;
  padding: 12px 25px;
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-button.active {
  color: var(--primary);
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-button:hover {
  color: var(--primary);
}

.tab-content {
  display: none;
}

/* Formular Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light-text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

/* Floating Labels */
.floating-label {
  position: relative;
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-label textarea ~ label {
  top: 25px;
  transform: none;
}

.floating-label.focused label,
.form-control.has-value ~ label {
  top: 0;
  left: 15px;
  font-size: 0.75rem;
  padding: 0 5px;
  background: #2a2a2a;
  transform: translateY(-50%);
  color: var(--primary);
}

.form-control:focus {
  border-color: var(--primary);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.select-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--light-text);
}

.select-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffcc00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.btn-full {
  width: 100%;
}

/* Map Styles */
.map-section {
  padding: 80px 0;
  position: relative;
  background-color: #1a1a1a;
}

.map-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-top: 40px;
  background: linear-gradient(145deg, #232323, #2c2c2c);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-responsive {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.map-address {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-address h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.map-address p {
  font-size: 1rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-address p i {
  color: var(--primary);
}

.map-directions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-directions h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.map-directions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-directions ul li {
  font-size: 0.95rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-directions ul li i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.map-directions ul li strong {
  font-weight: 600;
  margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    grid-template-columns: 1fr;
  }
  
  .map-responsive {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-tabs {
    flex-direction: column;
    border-bottom: none;
  }
  
  .tab-button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }
  
  .tab-button::after {
    left: 0;
    width: 5px;
    height: 100%;
    bottom: 0;
    transform: scaleY(0);
  }
  
  .tab-button.active::after {
    transform: scaleY(1);
  }
}

@media (max-width: 576px) {
  .contact-section,
  .map-section {
    padding: 60px 0;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 20px;
  }
  
  .map-info {
    padding: 20px;
  }
}

/* Öffnungszeiten Sektion */
.opening-hours-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  position: relative;
}

.opening-hours-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.opening-card {
  background: linear-gradient(145deg, #232323, #2c2c2c);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.opening-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.opening-card.highlight {
  border-left: 3px solid var(--primary);
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.1);
}

.opening-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.opening-icon i {
  font-size: 24px;
  color: var(--primary);
}

.opening-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.opening-times {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opening-times li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-times li:last-child {
  border-bottom: none;
}

.opening-times .day {
  font-size: 0.95rem;
  color: var(--light-text);
  font-weight: 500;
}

.opening-times .time {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

.opening-text {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

.opening-note {
  font-size: 0.85rem;
  color: var(--light-text);
  opacity: 0.8;
  font-style: italic;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-top: 10px;
}

/* Responsive Styles für Öffnungszeiten */
@media (max-width: 992px) {
  .opening-hours-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .opening-hours-container {
    grid-template-columns: 1fr;
  }
}

/* Anpassung Kontaktformular Tabs */
.contact-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: none;
}

.tab-button {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-button i {
  font-size: 1.1rem;
  color: rgba(255, 204, 0, 0.7);
}

.tab-button.active {
  background-color: rgba(255, 204, 0, 0.15);
  color: var(--primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 2px solid var(--primary);
}

.tab-button.active i {
  color: var(--primary);
}

.tab-button.active::after {
  display: none;
}

.tab-button:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Anpassung des Formularbereichs */
.contact-form-container {
  background: linear-gradient(145deg, #232323, #2c2c2c);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.floating-label label {
  color: rgba(255, 255, 255, 0.6);
}

.floating-label.focused label,
.form-control.has-value ~ label {
  background: #2a2a2a;
  color: var(--primary);
}

.checkbox-group a {
  color: var(--primary);
}

/* .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark-text);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
} */

/* Spezifische Styles nur für das Formular-Buttons
.contact-form .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark-text);
}

.contact-form .btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
} */

/* Styling für das Dropdown */
.select-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffcc00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 40px;
}

.select-group select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.select-group select option {
  background-color: #2a2a2a;
  color: var(--light-text);
}

.select-group select option:hover,
.select-group select option:focus,
.select-group select option:checked {
  background-color: rgba(255, 204, 0, 0.15);
  color: var(--primary);
}

/* Testimonials auf der About-Seite */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
}

.testimonial-quote-icon {
  color: rgba(255, 204, 0, 0.15);
  position: absolute;
  top: 25%;
  right: 20%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  position: relative;
}

.testimonials-left {
  padding-right: 20px;
}

.testimonial-authors {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-author:hover,
.testimonial-author.active {
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.1), rgba(255, 204, 0, 0.03));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.testimonial-author.active {
  position: relative;
}

.testimonial-author.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 204, 0, 0.3);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.8;
}

.testimonials-right {
  position: relative;
  height: 100%;
}

.testimonial-display {
  display: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border-radius: 16px;
  padding: 30px;
  animation: fadeIn 0.5s ease-in;
  border-left: 3px solid rgba(255, 204, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-display.active {
  display: block;
}

.testimonial-rating {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-category span {
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.8;
}

.stars {
  display: flex;
}

.stars i {
  color: var(--primary);
  margin-right: 3px;
  font-size: 0.9rem;
}

.testimonial-text {
  position: relative;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
  font-style: italic;
  position: relative;
}

.testimonial-text p::before {
  content: open-quote;
  font-size: 3rem;
  position: absolute;
  left: -15px;
  top: -20px;
  color: rgba(255, 204, 0, 0.15);
  font-family: serif;
}

@media (max-width: 992px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
  }
  
  .testimonial-authors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-author.active::before {
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
  }

  .author-image {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .testimonial-authors {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: row;
    text-align: left;
  }
  
  .testimonial-rating {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Fitnesstraining Seite Styles */

/* Prozess-Schritte Styles */
.process-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.process-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--dark);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.process-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 20px;
  width: 100%;
}

.process-image {
  flex: 0 0 200px;
}

.process-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.process-text {
  flex: 1;
}

.process-text h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.rounded-image {
  border-radius: 8px;
  overflow: hidden;
}

/* Trainingsbereiche Styles */
.training-areas {
  margin-top: 40px;
}

.training-area {
  position: relative;
  margin-bottom: 30px;
}

.training-area-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 300px;
}

.training-area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.training-area:hover .training-area-image img {
  transform: scale(1.05);
}

.training-area-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
  padding: 30px 20px 20px;
  transform: translateY(70%);
  transition: transform 0.3s ease;
}

.training-area:hover .training-area-overlay {
  transform: translateY(0);
}

.training-area-content h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.training-area-content p {
  color: var(--light-text);
  margin-bottom: 15px;
}

.training-area-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: var(--light-text);
  opacity: 0.8;
}

.training-area-list li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.training-area-list li:before {
  content: '\f111';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 8px;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 10px;
}

/* Persönliche Betreuung Styles */
.support-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.support-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.support-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-text h4 {
  margin-bottom: 5px;
  color: var(--light-accent);
}

/* App Features Styles */
.app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.app-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.app-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-text h4 {
  margin-bottom: 5px;
  color: var(--light-accent);
}

/* FAQ Styles */
.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-text);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-toggle i {
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
  .process-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-image {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .training-areas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
  }
  
  .process-number {
    margin-bottom: -25px;
    z-index: 1;
  }
}

@media (max-width: 576px) {
  .training-area-overlay {
    transform: translateY(0);
    position: relative;
    background: var(--dark-bg);
  }
  
  .training-area:hover .training-area-image img {
    transform: none;
  }
}

/* Bildanpassungen für die Fitness-Seite */
.section-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rounded-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.process-image {
  flex: 0 0 200px;
}

.process-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.training-area-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 300px;
}

.training-area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Verbesserte Feature-Items für eGym-Technologie */
.features-container {
  margin-top: 50px;
  gap: 30px;
}

.feature-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.2) 100%);
  border-radius: 15px;
  padding: 35px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-left: 3px solid var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  font-size: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  /* box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3); */
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.feature-item p {
  color: var(--light-text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at bottom right, rgba(255, 204, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }
  
  /* Mobile Navigation */
  .nav-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--darker-bg);
    flex-direction: column;
    align-items: center;
    padding-top: var(--spacing-lg);
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  .nav-list.active {
    left: 0;
  }
  
  /* CTA Button im Header ausblenden */
  header .nav-cta {
    display: none;
  }
  
  /* CTA Button im mobilen Menü einblenden */
  .nav-list .nav-cta {
    display: block;
    margin: var(--spacing-md) auto;
    width: 80%;
  }
}

.image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: 100%;
  position: relative;
}

.section-image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover .section-image {
  transform: scale(1.03);
}

.process-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 20px;
  width: 100%;
}

.process-image {
  flex: 0 0 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.process-image:hover img {
  transform: scale(1.05);
}

.training-area-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 300px;
}

.training-area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Bei Bildern mit dunklem Hintergrund für bessere Lesbarkeit */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  border-radius: 8px;
  pointer-events: none;
}

/* Responsive Anpassungen für Bilder */
@media (max-width: 992px) {
  .section-image {
    min-height: 300px;
  }
  
  .process-image {
    width: 100%;
    flex: 0 0 100%;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .section-image {
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .process-image {
    height: 200px;
  }
  
  .training-area-image {
    height: 200px;
  }
}

.nav-icon {
  display: none; /* Icons standardmäßig ausblenden */
  margin-right: 10px;
  color: var(--primary);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.desktop-cta {
  display: block;
}

.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  
  .nav-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--darker-bg);
    flex-direction: column;
    align-items: center;
    padding-top: var(--spacing-lg);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-item {
    margin: 0;
    width: 85%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    position: relative;
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 5px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .nav-icon {
    display: inline-block; /* Icons im mobilen Menü anzeigen */
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    /* background-color: rgba(255, 255, 255, 0.05); */
    box-shadow: none;
    padding: 10px 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 15px;
    border-radius: 5px;
  }
  
  .dropdown-item {
    padding: 10px 20px;
    text-align: left;
    margin-left: 30px;
    font-size: 1rem;
    border-left: 2px solid rgba(255, 204, 0, 0.3);
  }
  
  .dropdown-item:hover {
    padding-left: 25px;
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.03);
  }
  
  /* CTA Button Styles */
  .desktop-cta {
    display: none;
  }
  
  .mobile-cta {
    display: block;
    margin-top: 20px;
    /* width: 100%; */
  }
  
  .mobile-cta .nav-cta {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    margin-top: 15px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
  }
  
  .mobile-toggle {
    display: block;
    margin-left: auto;
    margin-right: 10%;
  }
}

/* Kurse Intro Stile */
.kurs-intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.kurs-intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--light-text);
}

.kurs-intro-text p {
  margin-bottom: 20px;
}

.kurs-intro-image {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(2deg);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.kurs-intro-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.1), transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.kurs-intro-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.kurs-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kurs-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.kurs-category {
  flex: 0 0 auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.2) 100%);
  border-radius: 30px;
  padding: 12px 25px;
  color: var(--light-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.kurs-category i {
  color: var(--primary);
  font-size: 1.1rem;
}

.kurs-category:hover, 
.kurs-category.active {
  background: linear-gradient(145deg, var(--primary), var(--hover));
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.kurs-category:hover i,
.kurs-category.active i {
  color: var(--dark-bg);
}

/* Kurs Detail Sektion */
.kurs-detail-section {
  padding: 80px 0;
}

.kurs-detail-section.bg-accent {
  background-color: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.kurs-detail-section.bg-accent::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
}

.kurs-detail-section.bg-accent::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.02) 0%, rgba(0, 0, 0, 0) 70%);
}

.kurs-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.kurs-detail.reversed {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.kurs-detail.reversed .kurs-detail-content {
  direction: ltr;
}

.kurs-detail.reversed .kurs-detail-image {
  direction: ltr;
}

.kurs-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.kurs-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dark-bg);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease;
}

.kurs-detail-header h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin: 0;
}

.kurs-detail-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 30px;
}

.kurs-benefits {
  list-style: none;
  margin-bottom: 30px;
}

.kurs-benefits li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 15px;
}

.kurs-benefits li i {
  color: var(--primary);
  font-size: 1rem;
}

.kurs-detail-image {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.kurs-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kurs-detail-image:hover img {
  transform: scale(1.05);
}

.rounded-image {
  border-radius: 15px;
}

/* Responsive Anpassungen für Kurse */
@media (max-width: 992px) {
  .kurs-detail, 
  .kurs-detail.reversed {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  
  .kurs-detail-image img {
    min-height: 350px;
  }
  
  .kurs-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .kurs-categories {
    gap: 10px;
  }
  
  .kurs-category {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .kurs-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .kurs-detail-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .kurs-category {
    width: calc(50% - 10px);
    justify-content: center;
  }
  
  .kurs-detail-image img {
    min-height: 250px;
  }
}

/* Kursplan Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: var(--spacing-md);
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    animation: modalOpen 0.3s ease-out;
    border-top: 4px solid var(--primary);
}

.kursplan-widget-container {
    padding: 20px;
}

.kursplan-widget-wrapper {
    width: 100%;
    min-height: 500px;
}

.modal-header {
    background-color: #f5f5f5;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #000;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Anpassungen für das Modal */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .kursplan-widget-wrapper {
        min-height: 400px;
    }
}


/* Karriere-Sektion */
.career-section {
  background-color: var(--darker-bg);
  padding: var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
}

.career-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.05), transparent 60%);
  z-index: 1;
}

.career-section .container {
  position: relative;
  z-index: 2;
}

.career-content {
  display: grid;
  gap: var(--spacing-lg);
}

/* Vorteile-Karten */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.benefit-card {
  background: linear-gradient(145deg, var(--dark-bg), var(--accent));
  border-radius: 15px;
  padding: var(--spacing-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: height 0.3s ease;
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-icon {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
}

.benefit-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* CTA-Bereich */
.career-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-cta-inner {
  background: linear-gradient(145deg, var(--accent), var(--dark-bg));
  border-radius: 15px;
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 204, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.career-cta h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.career-cta p {
  margin-bottom: var(--spacing-md);
}

.career-mail-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.career-application .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: var(--spacing-sm);
}

/* Bewerbungs-Schritte */
.career-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.step {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-align: left;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--dark-bg);
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1rem;
}

.step p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .career-content {
    gap: var(--spacing-md);
  }
  
  .career-cta {
    /* order: -1; CTA vor den Vorteilen auf mobilen Geräten */
    margin-bottom: var(--spacing-md);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .career-cta-inner {
    padding: var(--spacing-md);
  }
  
  .benefit-card {
    padding: var(--spacing-sm);
  }
}