.personalized-container {
    position: relative;
    width: 100%;
    color: white;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 2rem 1rem;
    padding-top: 5rem;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 40%);
}
.HeroBannerItem_cta__1ySmO {
    padding: 0 !important;
}
.header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 25%;
    padding-bottom: 25%;
}

.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 4rem;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 300;
    font-family: "Saira Expanded";
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 36px;
}

.text-content ul {
    list-style: none;
    padding: 0;
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 200px;
}

.text-content li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.text-content li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    background-image: url('https://res.cloudinary.com/corsair-pwa/image/upload/f_auto,q_auto/akamai/landing/icue/refresh/bullet-triangle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
}

.left-right-content {
    padding-right: 5%;
    margin: auto;
    max-width: 1900px;
    gap: 5rem;
    padding-left: 5%;
    padding-bottom: 5rem;
}

.video-container {
    flex: 1;
    position: sticky;
    top: 27%;
    max-height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
    z-index: 10;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Video positioning - all videos stack in the same sticky container */
.video-2,
.video-3,
.video-5,
.video-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.video-1 {
    position: relative;
    opacity: 1;
}

.video-4 {
    position: relative;
    opacity: 1;
}

.video-placeholder {
    flex: 1;
    /* This creates space for the fixed video container */
}

@media (max-width: 1240px) {
    .video-container {
        top: 30%;
        max-height: 500px;
    }
}

@media (max-width: 1023px) {
    .left-content {
        max-width: 300px !important;
    }

    .video-container {
        max-height: 400px;
        top: 20%;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 1rem;
    }

    .text-content li {
        line-height: 1;
    }

    .text-content {
        margin-bottom: 3rem;
    }

    .video-2,
    .video-3,
    .video-5,
    .video-6 {
        opacity: 1 !important;
        transform: none !important;
        position: relative;
    }

    .header {
        opacity: 1 !important;
        position: initial;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
        line-height: 24px;
    }

    .video-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .video-placeholder {
        display: none;
    }
}