.intro-title {
    color: #003366;
    font-size: 2.5rem;
    margin: 40px 0 15px 0;
}

.intro-description {
    color: #4a5568;
    font-size: 1.15rem;
    max-width: 650px;
    line-height: 1.6;
    margin: 0;
}

/* O animație subtilă pentru săgeata de scroll */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
    .intro-title {
        font-size: 1.8rem; 
        margin: 80px 0 15px 0; 
    }

    .intro-description {
        font-size: 1rem; 
    }
}