.vision-hero {
    width: 100%;
    height: 500px;
    background-image: url('https://live.staticflickr.com/65535/53822325524_768f2d5875_h.jpg');
    background-size: cover;
    background-position: center top;
    margin-bottom: 2rem;
    border-radius: 8px;
    position: relative;
}

.vision-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(3, 9, 26, 0.95));
    padding: 2rem;
    color: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.vision-hero-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.vision-hero-overlay p {
    font-size: 1.2rem;
    max-width: 80%;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

@media (max-width: 768px) {
    .vision-hero {
        height: 400px;
    }
    
    .vision-hero-overlay h2 {
        font-size: 2rem;
    }
    
    .vision-hero-overlay p {
        font-size: 1rem;
        max-width: 100%;
    }
} 