/* What's Included Section */
.whats-included-section {
    padding: 4rem 0;
    background-color: #dff9fb;
    /* Light Teal Highlight */
    text-align: center;
    overflow: hidden;
}

.whats-included-section h2 {
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 3rem;
    position: relative;
    padding: 1rem 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    height: 250px;
    margin: 0 15px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    border: 4px solid white;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* List */
.included-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: left;
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--secondary);
}

.included-list li {
    padding: 1rem 0;
    border-bottom: 2px dashed #eee;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Arrow below button */
.arrow-down-cta {
    font-size: 3rem;
    color: var(--primary);
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Video Subsection */
.video-subsection {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
}

.video-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-subtitle i {
    color: var(--primary);
    animation: pulse 2s infinite;
}

.video-wrapper {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: black;
    aspect-ratio: 9/16;
    /* Vertical video ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Placeholder for video if no iframe is present yet */
.video-placeholder-content {
    color: white;
    text-align: center;
}

.video-placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}