.video-background-wrapper {
    background: url('/images/background9.jpg') no-repeat left center;
    background-size: cover;
    background-color: #f7660f;
    width: 100%;
    padding: 5rem 0;
}

.video-background-wrapper h1 {
    margin-bottom: 2em;
    padding: 0 1em;
    text-align: center;
    color: #fff;
}

.video-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2em;
    flex-wrap: wrap;
}

.info-box {
    width: 40%;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.button-link {
    display: inline-block;
    margin: 2rem auto 0;
    background-color: #1e90ff;
    padding: 0.8em 1.6em;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.button-link a {
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
}

.button-link:hover {
    background-color: #5d6d77;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.video-wrapper {
    width: 50%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    margin: 0 auto;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 1153px) {
    .video-background-wrapper {
        background: url('images/background9.jpg') no-repeat center center;
        background-size: cover;
        background-color: #f7660f;
    }

    .video-box {
        flex-direction: column;
        align-items: center;
    }

    .info-box,
    .video-wrapper {
        width: 100% !important;
    }

    .video-background-wrapper h1 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 900px) {
    .video-wrapper {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .video-wrapper {
        height: 320px;
    }
}
