/* Modern Styles */
:root {
    --primary-color: #dc2626; /* Red-600 */
    --secondary-color: #1f2937; /* Gray-800 */
    --text-color: #111827; /* Gray-900 */
    --bg-color: #f9fafb; /* Gray-50 */
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
