.hero-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(168, 85, 247, 0.9)), url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

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


.feature-icon {
    font-size: 2.5rem;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.cta-section {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 4rem 2rem;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-primary {
    background: #6366f1;
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #4f46e5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    }
