/* Landing Page Specific Styles */
:root {
    --nrc-orange: #FF6B00;
    --nrc-dark: #1A1A1A;
    --nrc-gray: #4A4A4A;
    --nrc-light-gray: #F5F5F5;
}

/* Additional styles for landing page components */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-page main {
    flex: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }
.feature-box:nth-child(5) { animation-delay: 0.5s; }
.feature-box:nth-child(6) { animation-delay: 0.6s; }

/* Responsive improvements */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}