.video-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.video-column {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    display:flex;
    flex-direction:column;
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 200px;
    min-height: 200px;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #333;
    margin-left: 5px;
}

.name-banner {
    background-color: #2F4F4F;
    color: #f0c090;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
}

.video-testimonial {
    background-color: #8D3B72;
    color: white;
    padding: 20px;
    text-align: center;
    /* min-height: 180px; */
    height:200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'roasterlight';
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    flex:1;

}

.watch-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 20px;
    margin: 20px auto 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: block;
    width: 80%;
    font-family: 'krona_oneregular';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
}

.watch-button:hover {
    background-color: white;
    color: #8D3B72!important;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 15px 25px;
    background-color: transparent;
    color: #2F4F4F;
    border: 2px solid #2F4F4F;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #2F4F4F;
    color: white;
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    background-color: #000;
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-column {
        max-width: 100%;
    }
    .video-testimonial{
        font-weight: 400;
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0%;
        text-align: center;
    }
    .video-thumbnail{
        max-height: 210px;;
        height: 210px;;
    }
    .video-thumbnail img{
        max-height: 210px;
    }
}

.cta-wrapper{
    text-align: center;
}