.full-width-video-banner-three {
    position: relative;
    width: 100%;
    height: 630px;
    overflow: hidden;
    background-color: #000; 
}

.full-width-video-banner-three__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.full-width-video-banner-three__content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.full-width-video-banner-three__title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    word-break: break-word;
    color: #ffffff;
}

.full-width-video-banner-three__subtitle {
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffffff;
    word-break: break-word;
}

.full-width-video-banner-three__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: #048ec9;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'ProximaNova';
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.full-width-video-banner-three__button:hover {
    background: #24b1ed;
}

.full-width-video-banner-three__button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .full-width-video-banner-three {
        height: 600px;
    }
    .full-width-video-banner-three__title {
        font-size: 40px;
    }
    .full-width-video-banner-three__subtitle {
        font-size: 20px;
    }
    .full-width-video-banner-three__button {
        font-size: 16px;
        padding: 12px 28px;
    }
}

@media (max-width: 768px) {
    .full-width-video-banner-three {
        height: 500px;
    }
    .full-width-video-banner-three__title {
        font-size: 28px;
    }
    .full-width-video-banner-three__subtitle {
        font-size: 16px;
    }
    .full-width-video-banner-three__button {
        font-size: 14px;
        padding: 10px 24px;
        gap: 8px;
    }
    .full-width-video-banner-three__button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .full-width-video-banner-three {
        height: 450px;
    }
    .full-width-video-banner-three__title {
        font-size: 22px;
    }
    .full-width-video-banner-three__subtitle {
        font-size: 14px;
    }
    .full-width-video-banner-three__button {
        font-size: 13px;
        padding: 8px 20px;
        gap: 6px;
    }
    .full-width-video-banner-three__button svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 420px) {
    .full-width-video-banner-three {
        height: 400px;
    }
    .full-width-video-banner-three__title {
        font-size: 18px;
    }
    .full-width-video-banner-three__subtitle {
        font-size: 12px;
        margin-bottom: 1rem;
    }
    .full-width-video-banner-three__button {
        font-size: 12px;
        padding: 8px 16px;
    }
}