:root {
    --primary-color: #0092ca;
    /* Deep Teal */
    --secondary-color: #fae013;
    /* Metallic Gold */
    --accent-color: #1a5e63;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --dark-bg: #0a0a0a;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .teaser-section {
        padding: 50px 0;
    }

    .teaser-card {
        margin-bottom: 30px;
    }
}