/* Custom Styles */
.hero {
    background-image: radial-gradient(circle at 75% 50%, rgba(124, 58, 237, 0.9), rgba(67, 56, 202, 0.9));
}

.benefit-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.benefit-card i {
    transition: transform 0.3s ease;
}

/* FAQ Animation */
.faq-question {
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #7c3aed;
}

.faq-answer {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Shadow */
.shadow-custom {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
}