/********** Template CSS **********/
:root {
--primary: #8B5CF6;
--light: #EDE9FE;
--dark: #6D28D9;
--bg-color: #FAF5FF;
--accent-color: #EC4899;
--text-color: #4B5563;
--white: #ffffff;
--bg-primary: #F3E8FF;
--text-primary: #374151;
--heading-color: #7C3AED;
--font-family: 'Maven Pro', sans-serif;
--font-family-sans: 'Maven Pro', sans-serif;

--border-radius: 6px;
--shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Global font settings */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  padding-top: 80px;
}

/* Headings use EB Garamond */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 600;
}

/* Text content uses EB Garamond */
p, .text-content, .about-text, .advantage-text, .program-feature-text, 
.plan-feature-text, .tip-description, .testimonial-text, .contact-description {
  font-family: var(--font-family);
  line-height: 1.6;
}

/* Buttons and UI elements use Poppins for better readability */
.btn, .navbar, .form-control, .nav-link, .form-floating label {
  font-family: var(--font-family-sans);
}
.bg-dark {
  background-color: var(--dark) !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2rem;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
  opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem var(--dark) !important;
}


.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
  border-radius: 10px;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** New Modern Header ***/
.main-header {
  background: linear-gradient(135deg, var(--dark) 0%, #5B21B6 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header .navbar {
  padding: 1rem 0;
  background: transparent !important;
}

.main-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-header .navbar-brand:hover {
  transform: translateY(-2px);
}

.main-header .logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.main-header .brand-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Maven Pro', sans-serif;
}

.main-header .navbar-nav {
  align-items: center;
  gap: 0.5rem;
}

.main-header .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Maven Pro', sans-serif;
}

.main-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary));
  transition: transform 0.3s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.main-header .nav-link.btn-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary) 100%);
  color: #ffffff !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 25px;
  font-weight: 600;
  margin-left: 1rem;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.main-header .nav-link.btn-cta:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.main-header .nav-link.btn-cta::after {
  display: none;
}

.main-header .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.main-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

@media (max-width: 991.98px) {
  .main-header .navbar-nav {
    margin-top: 1rem;
    padding: 1rem 0;
  }
  
  .main-header .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  .main-header .nav-link.btn-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* New Modern Footer */
.main-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, var(--dark) 50%, #1a1a2e 100%);
  color: #ffffff;
  padding: 4rem 0 0;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.main-footer .footer-content {
  padding-bottom: 3rem;
}

.footer-brand-section {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.footer-brand-text {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Maven Pro', sans-serif;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: 'Maven Pro', sans-serif;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  transform: translateY(-3px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.social-link .material-icons-outlined {
  font-size: 1.25rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  font-family: 'Maven Pro', sans-serif;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary));
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-family: 'Maven Pro', sans-serif;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(5px);
  padding-left: 5px;
}

.footer-links-list a .material-icons-outlined {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-family: 'Maven Pro', sans-serif;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 3rem;
}

.copyright-text,
.made-with {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  font-family: 'Maven Pro', sans-serif;
}

.made-with {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .main-footer {
    padding: 3rem 0 0;
  }
  
  .footer-content {
    padding-bottom: 2rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .row > div {
    margin-bottom: 0.5rem;
  }
  
  .social-links {
    justify-content: flex-start;
  }
}

/* Shimmer animation for footer */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Google Fonts - Maven Pro */
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap");

/* ============================================
   Cookie Banner Styles
   ============================================ */
.cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.98) 0%, rgba(236, 72, 153, 0.98) 100%);
  backdrop-filter: blur(20px);
  padding: 2rem 2.5rem;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.cookie-wrapper.show {
  transform: translateY(0);
}

.cookie-wrapper.hidden {
  display: none;
}

.cookie-wrapper > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-wrapper .material-icons-outlined,
.cookie-wrapper i {
  font-size: 2.5rem;
  color: #ffffff;
  animation: cookiePulse 2s ease-in-out infinite;
}

@keyframes cookiePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cookie-wrapper h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-wrapper .data {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cookie-wrapper .data p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-family: 'Maven Pro', sans-serif;
}

.cookie-wrapper .data p a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.cookie-wrapper .data p a:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cookie-wrapper .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}

.cookie-wrapper .cookie-button {
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Maven Pro', sans-serif;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-wrapper .cookie-button#acceptBtn {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.cookie-wrapper .cookie-button#acceptBtn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-wrapper .cookie-button#acceptBtn:active {
  transform: translateY(0);
}

.cookie-wrapper .cookie-button#declineBtn {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-wrapper .cookie-button#declineBtn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cookie-wrapper .cookie-button#declineBtn:active {
  transform: translateY(0);
}

.cookie-wrapper .cookie-button .material-icons-outlined {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.cookie-wrapper .cookie-button:hover .material-icons-outlined {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cookie-wrapper {
    padding: 1.5rem 1.5rem;
  }

  .cookie-wrapper h2 {
    font-size: 1.25rem;
  }

  .cookie-wrapper .data p {
    font-size: 0.9rem;
  }

  .cookie-wrapper .buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cookie-wrapper .cookie-button {
    width: 100%;
    max-width: 100%;
  }

  .cookie-wrapper .material-icons-outlined,
  .cookie-wrapper i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .cookie-wrapper {
    padding: 1.25rem 1rem;
  }

  .cookie-wrapper h2 {
    font-size: 1.1rem;
  }

  .cookie-wrapper > div:first-child {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Neue Styles für Artflowstudio */
/* Globale Variablen */

/* Hero-Sektion Styling */
.hero-section {
  padding: 150px 0;
  background: linear-gradient(135deg, #fbffff 0%, #f1fff8 100%);
}

.hero-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.stats-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .stats-card {
    margin-bottom: 1.5rem;
  }
}
/* Über uns Sektion Styling */
.about-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.about-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--border-radius);
}

.feature-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.5rem;
}

.feature-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Programme Sektion Styling */
/* Modern Programs Section with Background Image */
.programs-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-image: url('../img/main.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.programs-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.85) 0%, 
    rgba(109, 40, 217, 0.9) 30%,
    rgba(236, 72, 153, 0.85) 70%,
    rgba(139, 92, 246, 0.9) 100%);
  z-index: 1;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.programs-section .container {
  position: relative;
  z-index: 3;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.section-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Maven Pro', sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.section-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.program-card-modern {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.program-card-modern:hover::before {
  transform: scaleX(1);
}

.program-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 1);
}

.program-card-modern.featured {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 1);
}

.program-featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.program-card-header {
  padding: 2.5rem 2.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.program-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.program-card-modern:hover .program-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: scale(1.1) rotate(5deg);
}

.program-icon {
  font-size: 2.5rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.program-card-modern:hover .program-icon {
  color: #ffffff;
}

.program-badge {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.program-card-body {
  padding: 0 2.5rem 2rem;
  flex-grow: 1;
}

.program-title-modern {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-family: 'Maven Pro', sans-serif;
}

.program-subtitle {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.program-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.program-features-list li:last-child {
  margin-bottom: 0;
}

.feature-check {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.program-pricing {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Maven Pro', sans-serif;
}

.price-period {
  font-size: 1rem;
  color: rgba(30, 64, 175, 0.7);
  font-weight: 500;
}

.price-note {
  font-size: 0.875rem;
  color: rgba(30, 64, 175, 0.6);
  font-style: italic;
}

.program-card-footer {
  padding: 1.5rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

/* Pricing Comparison Table */
.pricing-comparison-section {
  margin-top: 4rem;
  padding: 3rem 0;
}

.pricing-table-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-table-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
}

.pricing-table-responsive {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Maven Pro', sans-serif;
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  color: #ffffff;
}

.pricing-table th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  transition: background-color 0.3s ease;
}

.pricing-table tbody tr:hover {
  background-color: rgba(139, 92, 246, 0.05);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 1.25rem 1rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.pricing-table td strong {
  color: var(--heading-color);
  font-weight: 600;
}

.pricing-note {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--primary);
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.pricing-note p {
  margin: 0;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .pricing-table-wrapper {
    padding: 1.5rem;
  }

  .pricing-table-title {
    font-size: 1.5rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.875rem 0.5rem;
    font-size: 0.85rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }
}

.program-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.program-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  color: #ffffff;
}

.program-cta-btn .material-icons-outlined {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.program-cta-btn:hover .material-icons-outlined {
  transform: translateX(4px);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.program-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.15);
  transform: translateY(-8px);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.btn-small {
  padding: 4px 10px;
  text-transform: initial;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 0px;
}
.program-number {
  background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.program-number::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #f97316);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-number::before {
  opacity: 1;
}

.program-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(30, 64, 175, 0.02);
}

.program-feature:hover {
  background: rgba(30, 64, 175, 0.05);
  transform: translateX(4px);
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.program-feature:hover .program-feature-icon {
  color: var(--primary);
  transform: scale(1.1);
}

.program-feature-text {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .about-title, .programs-title {
    font-size: 2rem;
  }
  
  .about-image {
    height: 300px;
    margin-bottom: 2rem;
  }
  
  .program-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .program-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .program-title {
    font-size: 1.4rem;
  }
  
  .program-feature {
    padding: 0.6rem;
    margin-bottom: 1rem;
  }
  
  .program-feature-text {
    font-size: 0.95rem;
  }
}

/* Modern Advantages Section */
.advantages-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.advantages-section .container {
  position: relative;
  z-index: 2;
}

.advantages-header {
  text-align: center;
  margin-bottom: 4rem;
}

.advantages-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-color));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.advantages-title-modern {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Maven Pro', sans-serif;
}

.advantages-intro-modern {
  color: var(--text-color);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.advantages-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.advantage-card-modern {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.advantage-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.advantage-card-modern:hover::before {
  transform: scaleX(1);
}

.advantage-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

.advantage-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(139, 92, 246, 0.08);
  line-height: 1;
  font-family: 'Maven Pro', sans-serif;
  z-index: 0;
}

.advantage-icon-modern {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.advantage-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 18px;
  transition: all 0.4s ease;
}

.advantage-card-modern:hover .advantage-icon-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: scale(1.1) rotate(-5deg);
}

.advantage-icon-modern .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}

.advantage-card-modern:hover .advantage-icon-modern .material-icons-outlined {
  color: #ffffff;
  transform: scale(1.1);
}

.advantage-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.advantage-title-modern {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: 'Maven Pro', sans-serif;
}

.advantage-text-modern {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.advantage-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.advantage-card-modern:hover .advantage-hover-effect {
  width: 300px;
  height: 300px;
}

.advantages-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.advantages-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  border-radius: 2px;
}

.advantages-intro {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.advantage-card {
  background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.06);
  backdrop-filter: blur(10px);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.advantage-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
  border-color: var(--accent-color);
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  position: relative;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.advantage-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #f97316);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover .advantage-icon::before {
  opacity: 1;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-title-item {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-text {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.advantages-image {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.1);
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.advantages-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
}

.advantages-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-family);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Moderne Erfolgsgeschichten-Sektion */
/* Modern Success Section */
.success-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.success-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.success-section .container {
  position: relative;
  z-index: 2;
}

.success-header {
  text-align: center;
  margin-bottom: 4rem;
}

.success-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.success-title-modern {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Maven Pro', sans-serif;
}

.success-intro-modern {
  color: var(--text-color);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card-modern {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card-modern:hover::before {
  transform: scaleX(1);
}

.testimonial-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

.testimonial-card-modern.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
}

.testimonial-featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.testimonial-card-modern:hover .testimonial-quote-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: scale(1.1) rotate(5deg);
}

.testimonial-quote-icon .material-icons-outlined {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.testimonial-card-modern:hover .testimonial-quote-icon .material-icons-outlined {
  color: #ffffff;
}

.testimonial-text-modern {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar .material-icons-outlined {
  color: #ffffff;
  font-size: 1.5rem;
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-name {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: 'Maven Pro', sans-serif;
}

.testimonial-role {
  color: var(--text-color);
  font-size: 0.875rem;
  opacity: 0.8;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating .material-icons-outlined {
  font-size: 1.25rem;
  color: #fbbf24;
}

.success-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.success-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  border-radius: 2px;
}

.success-intro {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.success-slider {
  padding: 2rem 0;
  position: relative;
}

.testimonial-card {
  font-family: var(--font-family);
  background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 20px;
  padding: 3rem;
  margin: 1rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
  border-color: var(--accent-color);
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  z-index: 3;
}

.testimonial-text {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  margin-top: 1.5rem;
  font-weight: 400;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-text::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 64, 175, 0.1);
}

.author-icon {
  color: var(--accent-color);
  margin-right: 0.8rem;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent-color), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Swiper Navigation Styling */
.success-slider .swiper-button-next,
.success-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
  transition: all 0.3s ease;
}

.success-slider .swiper-button-next:hover,
.success-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.success-slider .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.success-slider .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 0;
  }
  
  .advantages-title {
    font-size: 2.4rem;
  }
  
  .advantages-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .advantage-card {
    padding: 2rem;
    border-radius: 16px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  
  .advantage-title-item {
    font-size: 1.2rem;
  }
  
  .advantages-image {
    height: 220px;
    border-radius: 12px;
  }
  
  .advantages-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .success-section {
    padding: 60px 0;
  }
  
  .success-title {
    font-size: 2.4rem;
  }
  
  .success-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .testimonial-card {
    padding: 2rem;
    margin: 0.5rem;
    border-radius: 16px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonial-quote {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    top: -12px;
    left: 25px;
  }
}

@media (max-width: 480px) {
  .advantages-stats {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantages-image {
    height: 200px;
  }
  
  .tips-section {
    padding: 60px 0;
  }
  
  .tips-title {
    font-size: 2.4rem;
  }
  
  .tips-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tip-item {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .tip-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .tip-title {
    font-size: 1.3rem;
  }
  
  .tip-description {
    font-size: 1rem;
  }
  
  .tips-cta {
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .tips-cta h3 {
    font-size: 1.6rem;
  }
  
  .tips-cta p {
    font-size: 1.1rem;
  }
}
/* Moderne Tipps-Sektion mit neuer Farbpalette */
/* Modern Tips Section */
.tips-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.tips-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tips-section .container {
  position: relative;
  z-index: 1;
}

.tips-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tips-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-color));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.tips-title-modern {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Maven Pro', sans-serif;
}

.tips-intro-modern {
  color: var(--text-color);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.tips-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tips-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="tips-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%236366f1" opacity="0.08"/><circle cx="0" cy="0" r="1" fill="%23ec4899" opacity="0.05"/><circle cx="60" cy="60" r="1" fill="%236366f1" opacity="0.05"/><circle cx="15" cy="45" r="0.8" fill="%23ec4899" opacity="0.03"/></pattern></defs><rect width="120" height="120" fill="url(%23tips-pattern)"/></svg>');
  opacity: 0.7;
  z-index: 1;
}

.tips-section .container {
  position: relative;
  z-index: 2;
}

.tips-title {
  color: #1e293b;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.tips-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  border-radius: 2px;
}

.tips-intro {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: #475569;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.tip-card-modern {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tip-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.tip-card-modern:hover::before {
  transform: scaleX(1);
}

.tip-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

.tip-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(139, 92, 246, 0.08);
  line-height: 1;
  font-family: 'Maven Pro', sans-serif;
  z-index: 0;
}

.tip-icon-modern {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.tip-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 18px;
  transition: all 0.4s ease;
}

.tip-card-modern:hover .tip-icon-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: scale(1.1) rotate(-5deg);
}

.tip-icon-modern .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}

.tip-card-modern:hover .tip-icon-modern .material-icons-outlined {
  color: #ffffff;
  transform: scale(1.1);
}

.tip-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.tip-title-modern {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: 'Maven Pro', sans-serif;
}

.tip-description-modern {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.tip-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.tip-card-modern:hover .tip-hover-effect {
  width: 300px;
  height: 300px;
}

.tips-cta-modern {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.tips-cta-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tips-cta-content {
  position: relative;
  z-index: 1;
}

.tips-cta-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-family: 'Maven Pro', sans-serif;
}

.tips-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.tips-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tips-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

.tips-cta-button .material-icons-outlined {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.tips-cta-button:hover .material-icons-outlined {
  transform: translateX(5px);
}

/* Responsive Styles for Advantages Section */
@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 0;
  }
  
  .advantages-title-modern {
    font-size: 2rem;
  }
  
  .advantages-intro-modern {
    font-size: 1rem;
  }
  
  .advantages-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .advantage-card-modern {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .advantage-card-number {
    font-size: 3rem;
    top: 1rem;
    right: 1rem;
  }
  
  .advantage-icon-modern {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon-modern .material-icons-outlined {
    font-size: 2rem;
  }
  
  .advantage-title-modern {
    font-size: 1.25rem;
  }
}

/* Responsive Styles for Success Section */
@media (max-width: 768px) {
  .success-section {
    padding: 60px 0;
  }
  
  .success-title-modern {
    font-size: 2rem;
  }
  
  .success-intro-modern {
    font-size: 1rem;
  }
  
  .testimonials-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card-modern {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .testimonial-quote-icon {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-quote-icon .material-icons-outlined {
    font-size: 1.5rem;
  }
  
  .testimonial-text-modern {
    font-size: 0.95rem;
  }
}

/* Responsive Styles for Programs Section */
@media (max-width: 768px) {
  .programs-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  
  .programs-background-overlay {
    background: linear-gradient(135deg, 
      rgba(139, 92, 246, 0.9) 0%, 
      rgba(109, 40, 217, 0.92) 50%,
      rgba(236, 72, 153, 0.9) 100%);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .program-card-modern {
    border-radius: 20px;
  }
  
  .program-card-header {
    padding: 2rem 2rem 1rem;
  }
  
  .program-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .program-icon {
    font-size: 2rem;
  }
  
  .program-title-modern {
    font-size: 1.5rem;
  }
  
  .program-card-body {
    padding: 0 2rem 1.5rem;
  }
  
  .program-card-footer {
    padding: 1rem 2rem 2rem;
  }
}

/* Responsive Styles for Tips Section */
@media (max-width: 768px) {
  .tips-section {
    padding: 60px 0;
  }
  
  .tips-title-modern {
    font-size: 2rem;
  }
  
  .tips-intro-modern {
    font-size: 1rem;
  }
  
  .tips-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .tip-card-modern {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .tip-number {
    font-size: 3rem;
    top: 1rem;
    right: 1rem;
  }
  
  .tip-icon-modern {
    width: 60px;
    height: 60px;
  }
  
  .tip-icon-modern .material-icons-outlined {
    font-size: 2rem;
  }
  
  .tip-title-modern {
    font-size: 1.25rem;
  }
  
  .tips-cta-modern {
    padding: 3rem 1.5rem;
    border-radius: 20px;
    margin-top: 2rem;
  }
  
  .tips-cta-title {
    font-size: 1.75rem;
  }
  
  .tips-cta-text {
    font-size: 1rem;
  }
}

.tip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 50%, #6366f1 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.tip-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tip-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
  border-color: #6366f1;
}

.tip-item:hover::after {
  opacity: 1;
}

.tip-icon {
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  position: relative;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.tip-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tip-item:hover .tip-icon::before {
  opacity: 1;
}

.tip-item:hover .tip-icon {
  transform: scale(1.1) rotate(5deg);
}

.tip-title {
  color: #1e293b;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.tip-description {
  color: #475569;
  font-family: var(--font-family);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

.tips-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.tips-cta h3 {
  color: #1e293b;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tips-cta p {
  color: #475569;
  font-family: var(--font-family);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tips-cta .btn {
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.tips-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

/* Preise Sektion Styling */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, #f5f5f5 100%);
}

.pricing-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 21, 4, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 20px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-name {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.plan-period {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.plan-feature-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.plan-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.pricing-note {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-primary);
  font-size: 1rem;
  font-style: italic;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .tips-title, .pricing-title {
    font-size: 2rem;
  }
  
  .tips-image {
    height: 250px;
    margin-bottom: 1rem;
  }
  
  .tip-item {
    padding: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .plan-price {
    font-size: 2rem;
  }
}
/* Modern Contact Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-primary) 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231e40af" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f59e0b" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%231e40af" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  border-radius: 2px;
}

.contact-description {
  font-family: var(--font-family);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.contact-info {
  background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.8) 100%);
  border: 1px solid rgba(30, 64, 175, 0.1);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.1);
  backdrop-filter: blur(10px);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.contact-info:hover {
  border-color: var(--accent-color);
  box-shadow: 0 30px 80px rgba(30, 64, 175, 0.15);
  transform: translateY(-8px);
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-container {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  max-width: 100%;
  margin: 0;
}

.form-floating {
  margin-bottom: 2rem;
  position: relative;
}

.form-floating .form-control {
  border: 2px solid rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  font-family: var(--font-family-sans);
}

.form-floating .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.15);
  background: var(--white);
  transform: translateY(-2px);
}

.form-floating .form-control:focus ~ label {
  color: var(--accent-color);
  transform: translateY(-0.5rem) scale(0.9);
}

.form-floating label {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--font-family-sans);
}

.form-floating label .material-icons-outlined {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.contact-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.contact-cta h4 {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Kontaktformular Sektion Styling */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, #f5f5f5 100%);
}

.form-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.form-container {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-floating {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-floating .form-control {
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 1rem 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.form-floating .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.15);
  background: transparent;
}

.form-floating .form-control:focus ~ label {
  color: var(--accent-color);
}

.form-floating label {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-floating label .material-icons-outlined {
  color: var(--accent-color);
}

.error-message {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  display: none;
}

.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .contact-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .contact-info {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  
  .form-container {
    padding: 0;
    margin: 0;
  }
  
  .form-floating {
    margin-bottom: 1.5rem;
  }
  
  .form-floating .form-control {
    padding: 1rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
  
  .contact-cta {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-cta h4 {
    font-size: 1.1rem;
  }
  
  .contact-cta p {
    font-size: 0.9rem;
  }
}

.swiper-container {
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: var(--heading-color);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

/* Adjust for small screens */
@media (max-width: 767px) {
  .testimonial-card {
    padding: 20px;
  }

  .success-title {
    font-size: 30px;
  }
}

/* ============================================
   Page Hero Section (for About, Contact, FAQ)
   ============================================ */
.page-hero-section {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--dark) 0%, #5B21B6 50%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/main.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.page-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Maven Pro', sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   About Page Styles
   ============================================ */
.about-main-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 50%, #ffffff 100%);
}

.about-content-wrapper {
  margin-top: 2rem;
}

.about-image-modern {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-modern img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  pointer-events: none;
}

.about-text-content {
  padding-left: 2rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-family: 'Maven Pro', sans-serif;
}

.section-text {
  color: var(--text-color);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.feature-icon-box .material-icons-outlined {
  color: #ffffff;
  font-size: 1.75rem;
}

.feature-content-box h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Maven Pro', sans-serif;
}

.feature-content-box p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.mission-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #ffffff 100%);
}

.mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-color));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.mission-title {
  color: var(--heading-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Maven Pro', sans-serif;
}

.mission-intro {
  color: var(--text-color);
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

.mission-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.mission-card:hover .mission-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: scale(1.1) rotate(5deg);
}

.mission-icon-wrapper .material-icons-outlined {
  font-size: 2.5rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.mission-card:hover .mission-icon-wrapper .material-icons-outlined {
  color: #ffffff;
}

.mission-card-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Maven Pro', sans-serif;
}

.mission-card-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.values-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 100%);
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.values-title {
  color: var(--heading-color);
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Maven Pro', sans-serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

.value-icon-modern {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon-modern {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: scale(1.1) rotate(-5deg);
}

.value-icon-modern .material-icons-outlined {
  font-size: 2.5rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon-modern .material-icons-outlined {
  color: #ffffff;
}

.value-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Maven Pro', sans-serif;
}

.value-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-main-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 50%, #ffffff 100%);
}

.contact-form-modern {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-title {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Maven Pro', sans-serif;
}

.form-subtitle {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-modern label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Maven Pro', sans-serif;
}

.form-group-modern label .material-icons-outlined {
  font-size: 1.25rem;
  color: var(--primary);
}

.form-input-modern,
.form-textarea-modern {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Maven Pro', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  color: var(--text-color);
}

.form-input-modern:focus,
.form-textarea-modern:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-textarea-modern {
  resize: vertical;
  min-height: 120px;
}

.submit-button-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  font-family: 'Maven Pro', sans-serif;
}

.submit-button-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.submit-button-modern .material-icons-outlined {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.submit-button-modern:hover .material-icons-outlined {
  transform: translateX(5px);
}

/* New Contact Form Styles */
.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Maven Pro', sans-serif;
}

.form-label-new .required-star {
  color: var(--accent-color);
  margin-left: 0.25rem;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Maven Pro', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  color: var(--text-color);
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-textarea-new {
  resize: vertical;
  min-height: 120px;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  font-family: 'Maven Pro', sans-serif;
  width: 100%;
}

.form-submit-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.form-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-submit-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.form-submit-button:hover:not(:disabled) svg {
  transform: translateX(5px);
}

.invalid-feedback {
  display: none;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-family: 'Maven Pro', sans-serif;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-status {
  margin-top: 1rem;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Maven Pro', sans-serif;
}

.form-status .error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-status .sent-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-info-modern {
  position: sticky;
  top: 100px;
}

.contact-info-header {
  margin-bottom: 2rem;
}

.contact-info-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Maven Pro', sans-serif;
}

.contact-info-header p {
  color: var(--text-color);
  font-size: 0.95rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.15);
  border-color: var(--primary);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  transform: scale(1.1);
}

.contact-info-icon .material-icons-outlined {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon .material-icons-outlined {
  color: #ffffff;
}

.contact-info-content h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Maven Pro', sans-serif;
}

.contact-info-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.contact-info-content p {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.5rem 0 0;
}

.contact-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Maven Pro', sans-serif;
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-button-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: 'Maven Pro', sans-serif;
}

.cta-button-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

.cta-button-modern .material-icons-outlined {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-button-modern:hover .material-icons-outlined {
  transform: translateX(5px);
}

/* ============================================
   FAQ Page Styles
   ============================================ */
.faq-main-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 50%, #ffffff 100%);
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item-modern {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item-modern:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Maven Pro', sans-serif;
}

.faq-question:hover {
  background: rgba(139, 92, 246, 0.05);
}

.faq-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 40px;
  font-family: 'Maven Pro', sans-serif;
}

.faq-question-text {
  flex-grow: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: 'Maven Pro', sans-serif;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 5.5rem;
}

.faq-cta-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.faq-cta-section-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.faq-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.faq-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Maven Pro', sans-serif;
}

.faq-cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: 'Maven Pro', sans-serif;
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

.faq-cta-button .material-icons-outlined {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-cta-button:hover .material-icons-outlined {
  transform: translateX(5px);
}

/* ============================================
   Policy Pages Styles (Cookie, Privacy, Terms)
   ============================================ */
.policy-content-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 50%, #ffffff 100%);
}

.policy-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.policy-intro-text {
  font-size: 1.25rem;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.policy-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-item {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
  transform: translateY(-3px);
}

.policy-item-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 50px;
  font-family: 'Maven Pro', sans-serif;
}

.policy-item-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Maven Pro', sans-serif;
}

.policy-item-content {
  padding-left: 4rem;
}

.policy-item-content p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.policy-item-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-item-content a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ============================================
   Thanks Page Styles
   ============================================ */
.thanks-section {
  min-height: calc(100vh - 80px);
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--dark) 0%, #5B21B6 50%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.thanks-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/main.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.thanks-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon-wrapper {
  margin-bottom: 2rem;
}

.thanks-icon-circle {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: scaleIn 0.6s ease-out;
}

.thanks-icon {
  font-size: 4rem;
  color: #ffffff;
  animation: checkmark 0.8s ease-out 0.3s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.thanks-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Maven Pro', sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.thanks-message {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.thanks-submessage {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.thanks-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.thanks-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Maven Pro', sans-serif;
}

.thanks-button-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thanks-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

.thanks-button-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.thanks-button-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.thanks-button .material-icons-outlined {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.thanks-button:hover .material-icons-outlined {
  transform: translateX(5px);
}

/* Responsive Styles for Page Sections */
@media (max-width: 768px) {
  .page-hero-section {
    padding: 120px 0 80px;
  }
  
  .page-hero-title {
    font-size: 2.5rem;
  }
  
  .page-hero-description {
    font-size: 1.1rem;
  }
  
  .about-text-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-modern {
    padding: 2rem;
  }
  
  .contact-form-new {
    gap: 1.25rem;
  }
  
  .form-field-group {
    gap: 0.5rem;
  }
  
  .form-input-new,
  .form-textarea-new {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .form-submit-button {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
  
  .contact-info-modern {
    position: static;
    margin-top: 3rem;
  }
  
  .faq-answer {
    padding-left: 2rem;
  }
  
  .faq-question {
    padding: 1.5rem;
    flex-wrap: wrap;
  }
  
  .faq-number {
    min-width: 35px;
  }

  .policy-item {
    padding: 2rem;
  }

  .policy-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .policy-item-content {
    padding-left: 0;
  }

  .policy-number {
    min-width: 40px;
  }

  .thanks-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 80px);
  }

  .thanks-title {
    font-size: 2.5rem;
  }

  .thanks-message {
    font-size: 1.1rem;
  }

  .thanks-icon-circle {
    width: 100px;
    height: 100px;
  }

  .thanks-icon {
    font-size: 3rem;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thanks-button {
    width: 100%;
    justify-content: center;
  }
}

/* Company Info Section */
.company-info-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.company-info-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.company-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.company-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-family: 'Maven Pro', sans-serif;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.company-detail-item .material-icons-outlined {
  font-size: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.company-detail-item div {
  flex: 1;
}

.company-detail-item strong {
  display: block;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-family: 'Maven Pro', sans-serif;
}

.company-detail-item div:not(strong) {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.95rem;
}

.company-detail-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-detail-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.company-detail-item small {
  display: block;
  color: rgba(30, 64, 175, 0.7);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .company-info-section {
    padding: 3rem 0;
  }

  .company-info-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .company-info-title {
    font-size: 1.5rem;
  }

  .company-detail-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .company-detail-item .material-icons-outlined {
    font-size: 1.5rem;
  }
}