/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* FAQ Animation */
.faq-answer {
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* Product Card Hover */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .contact-columns {
        flex-direction: column;
    }
    
    .contact-columns > div {
        width: 100%;
        margin-bottom: 2rem;
    }
}