﻿p, li, div, h3, h4, h5, h6 {
    color: #000 !important;
}
/* CSS for responsive video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.hr-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0; /* vertical margin */
}

    .hr-with-text::before,
    .hr-with-text::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #ccc; /* line color */
    }

    .hr-with-text:not(:empty)::before {
        margin-right: 0.75em; /* space before text */
    }

    .hr-with-text:not(:empty)::after {
        margin-left: 0.75em; /* space after text */
    }

.h-container {
    background: linear-gradient(135deg, #428bca, #5fa9e6, #2c6cb0);
    padding: 20px;
    border-radius: 12px;
    color: white;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.signup-box {
    background: linear-gradient(135deg, #f1c232, #f9e79f);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    /*max-width: 400px;*/
    width: 100%;
}

    .signup-box h4 {
        color: #6c4f00;
    }
.thumbnail-scroll {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start; /* Allow natural scroll */
}

    .thumbnail-scroll::before,
    .thumbnail-scroll::after {
        content: '';
        flex: 1;
    }

    .thumbnail-scroll a {
        flex: 0 0 auto;
        scroll-snap-align: center;
        text-decoration: none;
        border-radius: 6px;
        transition: transform 0.2s ease, border 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

        .thumbnail-scroll a:hover {
            transform: scale(1.05);
        }

    .thumbnail-scroll img {
        width: 160px;
        height: auto;
        display: block;
        border-radius: 6px;
    }


    .thumbnail-scroll a.active-thumb {
        border: 2px solid #fff;
        box-shadow: 0 0 8px rgba(0, 119, 204, 0.4);
    }