body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    color: #2c3e50 !important;
}

.nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: white;
}

.statistics-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.format-card {
    transition: transform 0.3s ease;
    border-radius: 20px !important;
}

.format-card:hover {
    transform: translateY(-5px);
}

.testimonial-card {
    border-radius: 15px !important;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.text-purple {
    color: #9c27b0 !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
}

.card {
    border-radius: 15px !important;
    overflow: hidden;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.cookie-banner button {
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

.f1g4-grid-element {
    position: relative;
}

.price-card {
    border-radius: 20px !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.price-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: #667eea;
    position: relative;
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #667eea;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.success-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bg-success-gradient {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

footer a:hover {
    color: white !important;
    transition: color 0.3s ease;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.lead {
    font-weight: 400;
    font-size: 1.15rem;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

.section-spacing {
    padding: 80px 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overflow-hidden {
    overflow: hidden !important;
}

ul.checklist {
    list-style: none;
    padding-left: 0;
}

ul.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

ul.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.faq-item h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item h5 i {
    color: #667eea;
    font-size: 1.2rem;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

#faq .bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

#faq .btn-light {
    background-color: white;
    color: #2c3e50;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#faq .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#faq .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#faq .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-item h5 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    #faq .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item {
    position: relative;
}

.faq-item:hover::before {
    opacity: 1;
}

#faq h2.display-5 {
    color: #2c3e50;
    font-weight: 700;
}

#faq .lead {
    font-size: 1.15rem;
    color: #6c757d;
}

.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.contact-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.gap-3 {
    gap: 1rem !important;
}

@media (min-width: 992px) {
    .faq-item {
        min-height: 180px;
    }
}