.ambasador-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-width: 622px;
    width: 622px;
}

.ambasador-container video {
    aspect-ratio: 9 / 16;
    width: 350px; /* Adjust width as needed */
    height: auto;
    object-fit: cover;
    border-radius: 40px;
    margin: 0;
    padding: 0;
}

.video-wrapper {
    position: relative;
    display: block;
    line-height: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s;
}

.play-button:hover {
    opacity: 0.8;
}

.play-button svg {
    width: 64px;
    height: 64px;
}

.control-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 3;
}

.control-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.control-button svg {
    width: 20px;
    height: 20px;
}

.ambasador-container .yellow-box {
    position: absolute;
    right: 75px;
    z-index: -1;
}

.desktop-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 350px; /* Adjust size as needed */
    height: auto;
    z-index: 1;
}

.mobile-image {
    display: none;
}

@media (max-width: 1200px) {
    .ambasador-columns {
        flex-direction: column;
    }
    .ambasador-two {
        flex-basis: auto !important;
        width: 622px !important;
    }
    .ambasador-block {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    .mobile-image {
        display: block;
        position: absolute;
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
        width: auto; /* Adjust as needed */
        height: auto;
        z-index: 2;
    }
    .yellow-box {
        display: none;
    }

    .ambasador-container {
        margin-top: 40px;
        min-width: unset;
        width: auto;
    }
    .ambasador-two {
        width: auto !important;
    }
}