.full-width-banner-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.full-width-banner-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    isolation: isolate;
    width: 100%;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            var(--overlay-color) 0%,
            var(--overlay-color) 50%,
            rgba(0, 0, 0, 0) 100%
    );
    z-index: -1;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.banner-content {
    max-width: 1400px;
    color: white;
    width: 95%;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff !important;
    margin-top: 0px !important;
    /* Remove or modify these properties */
    word-break: normal !important;       /* Changed from break-word */
    overflow-wrap: break-word !important;
    hyphens: none !important;            /* Add this to prevent hyphenation */
    -webkit-hyphens: none !important;    /* For Safari */
    -moz-hyphens: none !important;       /* For Firefox */
    -ms-hyphens: none !important;        /* For IE/Edge */
    max-width: 100% !important;
}

.banner-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-button {
    display: inline-flex;
    border: 1px solid !important;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #CB6928 !important;
    color: #ffffff !important;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: none !important;
}

.banner-button span{
    height:21px;
}

.banner-button:hover {
    background-color: #B55A21 !important;
    color: white;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s var(--transition-smooth);
}

.banner-button:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .full-width-banner-section {
        padding: 4rem 0rem;
    }

    .banner-content {
        text-align: center;
        width: 100% !important;
    }

    .banner-container {
        margin-left: 2rem;
        margin-right: 2rem;
        padding-left: 0;
        padding-right: 0;
    }

    .banner-title {
        font-size: 2rem;
        /* Maintain the same hyphenation settings */
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
    }

    .banner-description {
        font-size: 1.25rem;
    }

    .overlay {
        background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.3) 0%,
                var(--overlay-color) 100%
        );
    }
}