/* Full Width Banner Section */
.banner-section {
    padding: 0;
    background-color: #ffffff;
}

/* Full width banner image */
.banner-image-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 2rem;
}

.banner-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Read More Button Container */
.banner-cta {
    text-align: center;
    padding: 0 1rem 2rem;
}

.banner-read-more-btn {
    padding: 0.7rem 1.5rem;
    background-color: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.banner-read-more-btn:hover {
    background-color: #d0d0d0;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-section {
        padding: 0;
    }

    .banner-image-container {
        margin-bottom: 1.5rem;
    }

    .banner-cta {
        padding: 0 1rem 1.5rem;
    }

    .banner-read-more-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .banner-image-container {
        margin-bottom: 1rem;
    }

    .banner-cta {
        padding: 0 1rem 1rem;
    }

    .banner-read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}