.banner {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Images/banner/banner-mission.webp);
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    filter: contrast(80%) brightness(40%);
    z-index: -1;
}

.banner-title {
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.body {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    padding: 6rem 4rem;
    max-width: 1550px;
    margin: 0 auto;
    align-items: center;
}

.body .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.body .text h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.body .text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.book-now {
    width: fit-content;
    padding: 1rem 2.5rem;
    background-color: var(--book-btn-bg);
    color: white;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.book-now:hover {
    background-color: var(--book-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.body .image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-bg {
        background-attachment: scroll;
    }

    .body {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 3rem;
    }
    
    .body .text h1 {
        font-size: 2rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .body {
        padding: 3rem 1.5rem;
    }
    
    .body .text h1 {
        font-size: 1.75rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
}