/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Call-to-Action Button Styles */
.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Testimonial Card Styles */
.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* FAQ Accordion Answer Transition */
.faq-answer {
    transition: max-height 0.3s ease-in-out;
}
