/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Business Card Hover Effect */
.business-card:hover {
    transform: translateY(-5px);
}

.business-card {
    transition: all 0.3s ease;
}

/* Category Card Hover Effect */
.category-card:hover {
    transform: scale(1.05);
}

.category-card {
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    
    #hero p {
        font-size: 1.1rem;
    }
}

/* Chatbot Overrides */
.chatbot-container {
    z-index: 1000;
}