/********** Template CSS **********/
:root {
  --primary: #0f172a;
  --light: #06b6d4;
  --dark: #0f172a;
  --bg-color: #f8fafc;
  --accent-color: #06b6d4;
  --text-color: #1e293b;
  --white: #ffffff;
  --bg-primary: #f1f5f9;
  --text-primary: #1e293b;
  --heading-color: #0f172a;
  --font-family: 'Abel', sans-serif;
  --font-family-sans: 'Abel', sans-serif;
  --font-family-mono: 'Abel', sans-serif;

--border-radius: 6px;
--shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Global font settings */
body {
  font-family: var(--font-family);
  line-height: 1.6;
  background-image: url('../img/main.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Headings use JetBrains Mono for tech look */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-mono);
  font-weight: 600;
}

/* Text content uses Inter */
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 Inter 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;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

  /* Footer Styles */
  .footer {
    background-color: var(--dark) !important;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-brand {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}



.btn-link {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.footer-email {
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-email-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-section-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Copyright section */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* Google Fonts - Abel */
@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");

/* ===== MODERN SIDEBAR DESIGN SYSTEM ===== */

/* Modern Sidebar */
.modern-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(0, 212, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.modern-sidebar.collapsed {
  width: 80px;
}

.modern-sidebar.collapsed .logo-text,
.modern-sidebar.collapsed .nav-text {
  opacity: 0;
  visibility: hidden;
}

.modern-sidebar.collapsed .sidebar-toggle {
  transform: rotate(180deg);
}

/* Sidebar Header */
.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sidebar-header {
    padding-top: 0;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.logo-icon .material-icons-outlined {
  font-size: 1.8rem;
  color: #ffffff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Abel', sans-serif;
  line-height: 1;
}

.logo-sub {
  font-size: 0.9rem;
  color: #00d4ff;
  font-weight: 500;
  font-family: 'Abel', sans-serif;
  line-height: 1;
}

.sidebar-toggle {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  color: #00d4ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-toggle:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

/* Sidebar Navigation */
.sidebar-nav {
  padding: 2rem 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-bottom: 0.5rem;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00d4ff, #0099cc);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-item.active .nav-link::before {
  transform: scaleY(1);
}

.nav-link:hover,
.nav-item.active .nav-link {
  background: rgba(0, 212, 255, 0.1);
  color: #ffffff;
  transform: translateX(8px);
}

.nav-icon {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  min-width: 24px;
}

.nav-text {
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-indicator {
  position: absolute;
  right: 1rem;
  width: 6px;
  height: 6px;
  background: #00d4ff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.nav-item.active .nav-indicator {
  opacity: 1;
  transform: scale(1);
}

/* Sidebar Footer */
.sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* Mobile Header */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  z-index: 1001;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: 'Abel', sans-serif;
}

.mobile-logo .material-icons-outlined {
  color: #00d4ff;
  font-size: 1.5rem;
}

.mobile-menu-btn {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  color: #00d4ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(0, 212, 255, 0.2);
}

/* Sidebar Toggle Button for Desktop */
.sidebar-toggle-btn {
  position: fixed;
  top: 30px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border: none;
  border-radius: 30%;
  color: #ffffff;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
  transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

.sidebar-toggle-btn .material-icons-outlined {
  font-size: 1.5rem;
}

/* Show toggle button only when sidebar is collapsed */
.sidebar-toggle-btn {
  display: none;
}

body.sidebar-collapsed .sidebar-toggle-btn {
  display: flex;
}

/* Main Content Offset */
body {
  margin-left: 280px;
  transition: margin-left 0.3s ease;
  overflow-x: hidden;
}

body.sidebar-collapsed {
  margin-left: 80px;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    margin-left: 0;
  }
  
  .modern-sidebar {
    transform: translateX(-100%);
    width: 280px;
  }
  
  .modern-sidebar.open {
    transform: translateX(0);
  }
  
  .mobile-header {
    display: flex;
  }
  
  .sidebar-toggle-btn {
    display: none !important;
  }
  
  .modern-sidebar.collapsed {
    width: 280px;
  }
}

@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}

.futuristic-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: scan-line 3s linear infinite;
}

@keyframes scan-line {
  0% { left: -100%; }
  100% { left: 100%; }
}

.futuristic-navbar {
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.futuristic-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.futuristic-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.futuristic-logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.futuristic-logo-text {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Abel', sans-serif;
  background: linear-gradient(135deg, #00d4ff, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.futuristic-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.futuristic-nav-link {
  position: relative;
  padding: 1rem 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
}

.futuristic-nav-link:hover {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-3px);
}

.futuristic-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.futuristic-nav-link:hover::before {
  opacity: 0.1;
}

/* Futuristic Sections */
.futuristic-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.futuristic-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.futuristic-section-content {
  position: relative;
  z-index: 2;
}

.futuristic-title {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Abel', sans-serif;
  background: linear-gradient(135deg, #00d4ff, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.futuristic-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00d4ff, #0099cc, #00d4ff, transparent);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Futuristic Cards */
.futuristic-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.futuristic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-card:hover::before {
  opacity: 1;
}

.futuristic-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00d4ff, #0099cc, #00d4ff);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-card:hover::after {
  opacity: 1;
}

.futuristic-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.3);
}

/* Futuristic Program Cards */
.futuristic-program-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 35px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.futuristic-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
  background-size: 200% 100%;
  animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.futuristic-program-number {
  position: absolute;
  top: -25px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #000000;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.futuristic-program-card:hover {
  transform: translateY(-25px) rotateX(5deg);
  box-shadow: 0 40px 80px rgba(0, 212, 255, 0.4);
  border-color: #00d4ff;
}

/* Futuristic Icons */
.futuristic-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
  border: 2px solid rgba(0, 212, 255, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.futuristic-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-icon:hover::before {
  opacity: 0.2;
}

.futuristic-icon:hover {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  border-color: #00d4ff;
}

.futuristic-icon .material-icons-outlined {
  font-size: 2.5rem;
  color: #00d4ff;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.futuristic-icon:hover .material-icons-outlined {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

/* Futuristic Buttons */
.futuristic-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border: none;
  border-radius: 30px;
  padding: 1.5rem 3rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.futuristic-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.futuristic-btn:hover::before {
  left: 100%;
}

.futuristic-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.6);
  background: linear-gradient(135deg, #0099cc, #00d4ff);
}

/* Futuristic Footer */
.futuristic-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff) 1;
  position: relative;
  overflow: hidden;
}

.futuristic-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, #0099cc, #00d4ff, transparent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.futuristic-footer-brand {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Abel', sans-serif;
  background: linear-gradient(135deg, #00d4ff, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Futuristic Contact Form */
.futuristic-form {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 35px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.futuristic-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 204, 0.05));
  z-index: 1;
}

.futuristic-form-content {
  position: relative;
  z-index: 2;
}

.futuristic-input {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.futuristic-input:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  outline: none;
}

.futuristic-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .futuristic-title {
    font-size: 2.5rem;
  }
  
  .futuristic-card {
    padding: 2rem;
  }
  
  .futuristic-program-card {
    padding: 2.5rem;
  }
  
  .futuristic-nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #f2f2f2;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;
  width: 100%;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: var(--dark);
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: var(--dark);
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: var(--dark);
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid var(--dark);
  color: #fff;
  padding: 8px 0;
  background: var(--dark);
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: var(--dark);
}

#declineBtn {
  background-color: #fff;
  color: var(--dark);
}

#declineBtn:hover {
  background-color: var(--dark);
  color: #fff;
}

/* Neue Styles für DeinErfolgscode */
/* Globale Variablen */

/* Hero-Sektion Styling */
.hero-section {
  padding: 150px 0;
  background: rgba(251, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.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: rgba(248, 250, 252, 0.15);
}

.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;
}

/* Programs Timeline Section */
.programs-timeline-section {
  padding: 120px 0;
  background: rgba(248, 250, 252, 0.25);
  position: relative;
  overflow: hidden;
}



.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.timeline-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Abel', sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #06b6d4, #0f172a, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #06b6d4, #0f172a, #06b6d4);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.marker-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
  border: 4px solid #ffffff;
  transition: all 0.3s ease;
}

.marker-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.6);
}

.marker-icon .material-icons-outlined {
  font-size: 2rem;
  color: #ffffff;
}

.marker-number {
  background: var(--heading-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Abel', sans-serif;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.3);
}

.timeline-content {
  flex: 1;
  max-width: 45%;
  padding: 0 2rem;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  
}
@media (min-width: 768px) {
  .timeline-card {
    width: 450px;
  }
}
.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #0891b2, #06b6d4);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Abel', sans-serif;
  margin: 0;
}

.card-badge {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-body {
  margin-bottom: 2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-description {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.feature-item .material-icons-outlined {
  color: #06b6d4;
  font-size: 1.2rem;
}

.card-footer {
  text-align: right;
}

.explore-btn {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, #0891b2, #06b6d4);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline-line {
    left: 2rem;
  }
  
  .timeline-marker {
    left: 2rem;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 4rem;
  }
  
  .timeline-content {
    max-width: 100%;
    padding: 0;
  }
  
  .timeline-title {
    font-size: 2.5rem;
  }
}

.programs-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.program-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(30, 64, 175, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.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;
  }
}

/* Advantages Mosaic Section */
.advantages-mosaic-section {
  padding: 120px 0;
  background: rgba(15, 23, 42, 1);
  position: relative;
  overflow: hidden;
}


.mosaic-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.mosaic-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Abel', sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #06b6d4, #ffffff, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mosaic-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 80px);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mosaic-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.mosaic-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  border-color: #06b6d4;
}

/* Large Card */
.large-card {
  grid-column: 1 / 7;
  grid-row: 1 / 5;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.1));
}

/* Medium Cards */
.medium-card {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
}

.medium-card:nth-child(3) {
  grid-row: 3 / 5;
}

/* Small Cards */
.small-card {
  grid-column: span 3;
  grid-row: span 2;
}

.small-card:nth-child(4) { grid-column: 1 / 4; grid-row: 5 / 7; }
.small-card:nth-child(5) { grid-column: 4 / 7; grid-row: 5 / 7; }
.small-card:nth-child(6) { grid-column: 7 / 10; grid-row: 5 / 7; }
.small-card:nth-child(7) { grid-column: 10 / 13; grid-row: 5 / 7; }

/* Image Card */
.image-card {
  grid-column: 1 / 7;
  grid-row: 7 / 9;
}

.mosaic-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.mosaic-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.mosaic-icon .material-icons-outlined {
  font-size: 1.8rem;
  color: #ffffff;
}

.mosaic-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Abel', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mosaic-card-text {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

.mosaic-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #06b6d4;
  font-family: 'Abel', sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mosaic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.9), rgba(8, 145, 178, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Abel', sans-serif;
}

.overlay-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.mosaic-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mosaic-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.mosaic-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.mosaic-item:hover .mosaic-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.8), rgba(8, 145, 178, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.mosaic-item:hover .image-overlay {
  opacity: 1;
}

.image-content {
  text-align: center;
  color: #ffffff;
}

.image-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Abel', sans-serif;
}

.image-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Mosaic */
@media (max-width: 1200px) {
  .mosaic-grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(10, 60px);
  }
  
  .large-card {
    grid-column: 1 / 5;
    grid-row: 1 / 6;
  }
  
  .medium-card {
    grid-column: 5 / 9;
    grid-row: 1 / 3;
  }
  
  .medium-card:nth-child(3) {
    grid-row: 3 / 5;
  }
  
  .small-card {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .small-card:nth-child(4) { grid-column: 1 / 3; grid-row: 6 / 8; }
  .small-card:nth-child(5) { grid-column: 3 / 5; grid-row: 6 / 8; }
  .small-card:nth-child(6) { grid-column: 5 / 7; grid-row: 6 / 8; }
  .small-card:nth-child(7) { grid-column: 7 / 9; grid-row: 6 / 8; }
  
  .image-card {
    grid-column: 1 / 5;
    grid-row: 8 / 11;
  }
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  
  .mosaic-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: 200px;
  }
  
  .mosaic-title {
    font-size: 2.5rem;
  }
}

/* Policy Pages Styles */
.policy-section {
  padding: 120px 0;
  background: rgba(248, 250, 252, 0.85);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}



.policy-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.policy-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Abel', sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #06b6d4, #0f172a, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.1);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #0891b2, #06b6d4);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.policy-intro {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 15px;
  border-left: 4px solid #06b6d4;
}

.policy-intro p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

.policy-section-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.policy-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: 'Abel', sans-serif;
  margin-bottom: 1.5rem;
}

.policy-section-title .material-icons-outlined {
  color: #06b6d4;
  font-size: 2rem;
}

.policy-section-item p {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1rem;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.1);
  transition: all 0.3s ease;
}

.policy-list-item:hover {
  background: rgba(6, 182, 212, 0.05);
  transform: translateX(5px);
}

.policy-list-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-list-icon .material-icons-outlined {
  color: #ffffff;
  font-size: 1.5rem;
}

.policy-list-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-family: 'Abel', sans-serif;
}

.policy-list-content p {
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.policy-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.policy-features li:last-child {
  border-bottom: none;
}

.policy-features .material-icons-outlined {
  color: #06b6d4;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.policy-rights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.policy-right-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(6, 182, 212, 0.1);
}

.policy-right-item .material-icons-outlined {
  color: #06b6d4;
  font-size: 1.2rem;
}

.policy-link {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-link:hover {
  color: #0891b2;
  text-decoration: underline;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
  .policy-section {
    padding: 80px 0;
  }
  
  .policy-title {
    font-size: 2.5rem;
  }
  
  .policy-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .policy-section-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .policy-list-item {
    flex-direction: column;
    text-align: center;
  }
  
  .policy-rights {
    grid-template-columns: 1fr;
  }
}

.advantages-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 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23f59e0b" opacity="0.1"/><circle cx="0" cy="0" r="1" fill="%231e40af" opacity="0.05"/><circle cx="40" cy="40" r="1" fill="%23f59e0b" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

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

.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: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  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);
}

.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 */
.success-section {
  padding: 100px 0;
  background: rgba(241, 245, 249, 0.15);
  position: relative;
  overflow: hidden;
}


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

.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: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  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);
  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 */
.tips-section {
  padding: 100px 0;
  background: rgba(248, 250, 252, 0.15);
  position: relative;
  overflow: hidden;
}


.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: var(--bg-primary);
  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-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
}

.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: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
}

.pricing-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-card {
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(15px);
  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: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
  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: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  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);
}

.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: 900px;
  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: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
}

.form-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.form-container {
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(15px);
  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;
  }
}