/* Hero Section for Nosotros Page */
.hero-nosotros {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--bg-hero-nosotros);
    background-size: cover;
    background-position: center;
    color: #f4f4f4;
    text-align: center;
    padding: 340px 0 350px;
}

.hero-nosotros h1 {
    color: #f4f4f4;
    font-size: 3.5rem;
    line-height: 4.5rem;
    margin-bottom: 10px;
}

.hero-nosotros p {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-nosotros {
        padding: 350px 20px 350px;
    }
}