/* Base Styles */
        .bilb-home-wrapper {
            /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
            color: #333;
            max-width: 1200px !important;
            /* width: 1200px !important; */
            margin: 0 auto !important;
            padding: 20px;
            line-height: 1.6;
        }

        /* Top Hero Section for June 17-20 Promo */
        .hero-promo {
            background-color: #f9f6f0;
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .hero-promo h2 {
            color: #d18a41;
            font-size: 32px;
            margin-bottom: 10px;
        }
        .hero-promo p {
            font-size: 18px;
            margin-bottom: 25px;
        }
        
        /* Video Container Styles */
        .video-container {
            max-width: 800px;
            margin: 0 auto 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .video-container video {
            width: 100%;
            display: block;
            border-radius: 10px;
        }

        /* Buttons */
        .btn-primary {
            display: inline-block;
            background-color: #d18a41;
            color: #fff;
            padding: 15px 35px;
            text-decoration: none;
            font-size: 18px;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #b57635;
        }
        .btn-secondary {
            display: inline-block;
            background-color: #2c3e50;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
            text-align: center;
        }
        .btn-secondary:hover {
            background-color: #1a252f;
        }

        /* Programs Grid Section */
        .programs-section {
            text-align: center;
            margin-bottom: 60px;
        }
        .programs-section h2 {
            font-size: 32px;
            margin-bottom: 40px;
            color: #2c3e50;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .program-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .program-card:hover {
            transform: translateY(-5px);
        }
        .program-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .card-content h3 {
            font-size: 20px;
            color: #d18a41;
            margin-bottom: 15px;
            min-height: 50px;
        }
        .card-content p {
            font-size: 15px;
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Extra Video Sections */
        .extra-video-section {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }
        .extra-video-section h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        .extra-video-section p {
            font-size: 16px;
            color: #555;
            max-width: 700px;
            margin: 0 auto 30px auto;
        }
        
        /* Video Grid for Bottom */
        .bottom-videos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            .bottom-videos {
                grid-template-columns: 1fr;
            }
        }