.banner-container {
    position: relative;
    margin: 20px auto;
    max-width: 1200px;
}
.banner-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 20px;
    border-radius: 0 0 5px 5px;
}
.banner-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.banner-text {
    color: white;
    font-size: 16px;
    max-width: 600px;
}
