@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.mission-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.3s;
}

.mission-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.6s;
}

.scroll-text {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    z-index: 40;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-title {
        font-size: 1.5rem;
    }
}