.hero {
    min-height: calc(100vh - 70px);
    display: grid;
    place-items: center;
    background: linear-gradient(rgba(2, 46, 91, 0.45), rgba(2, 46, 91, 0.45)), url('../img/aero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: left;
    padding: 0 20px;
    margin-top: 70px;
}

.hero div {
    max-width: 1200px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    max-width: 900px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero p {
    font-size: 1.5rem;
    color: #E6E7EB;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero span {
    color: #D4AF37;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(2, 46, 91, 0.45), rgba(2, 46, 91, 0.45)), url('../img/aero.jpg');
        background-position: center;
        background-size: cover;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0;
        margin-bottom: 24px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-top: 0;
    }
}