.simple-banner-wrapper {
    background-size: cover; /* Changed back to cover to fill the 50vh area nicely without repeating or empty spaces */
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    width: 100%;
    min-height: 50vh; /* This makes it half the screen height */
    display: flex;
    flex-direction: column;
}

.simple-banner-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    flex: 1; /* Allows overlay to fill the min-height of wrapper */
    box-sizing: border-box;
    border-radius: 8px; /* Match wrapper */
}

.simple-banner-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.simple-banner-desc {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 800px;
}

.simple-banner-btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.simple-banner-btn:hover {
    opacity: 0.9;
}