/* Add to your CSS file */
.wide-banner {
    margin: 60px 0;
    padding: 0 20px;
}

.wide-banner .banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wide-banner .banner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wide-banner .banner-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.wide-banner .banner-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.wide-banner .banner-image-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.wide-banner .banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.wide-banner .banner-button-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.wide-banner .banner-button {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wide-banner .banner-button:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wide-banner .banner-title {
        font-size: 28px;
    }

    .wide-banner .banner-subtitle {
        font-size: 16px;
    }
}