 .program-header {
            border-bottom: 2px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .program-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .program-media {
            flex: 1;
            min-width: 300px;
            max-width: 100%;
        }

        .program-media img,
        .program-media iframe {
            width: 100%;
            height: 300px;
            /* Set height for uniformity */
            object-fit: cover;
            /* Ensure image or video fits well */
            border-radius: 10px;
        }

        .program-description {
            flex: 1;
            min-width: 300px;
            max-width: 100%;
        }

        .related-programs .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .related-programs .card img {
            border-radius: 10px;
            height: 200px;
            /* Consistent height for related programs */
            object-fit: cover;
            width: 100%;
        }

        .related-programs .card-body {
            padding: 15px;
        }

        .related-programs .card-title {
            font-size: 1.1rem;
            font-weight: bold;
        }

        .related-programs .card-text {
            font-size: 0.9rem;
            color: #666;
        }

        .icon-view {
            color: #1B8E2D;
            font-size: 20px; 
        }

        @media (max-width: 768px) {
            .program-content {
                flex-direction: column;
            }
        }