     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f3f3f3;
            color: #333;
        }

        .section {
            width: 100%;
            background: #f3f3f3;
            padding: 50px 20px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .col-md-12 {
            width: 100%;
        }

        /* Header Section */
        .header {
            text-align: center;
            margin-bottom: 80px;
            animation: slideDown 0.8s ease-out;
        }

        .header h1 {
            font-size: 56px;
            font-weight: 700;
            color: #1e3c82;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .accent-line {
            width: 120px;
            height: 5px;
            background: #ff6b35;
            margin: 0 auto 25px;
            border-radius: 3px;
        }

        .header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Section Title */
        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1e3c82;
            margin: 70px 0 50px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideRight 0.8s ease-out;
        }

        .section-icon {
            font-size: 42px;
        }

        /* Courses Container */
        .courses-container {
            display: flex;
            flex-direction: column;
            gap: 35px;
            margin-bottom: 60px;
        }

        /* Course Card - Photo Style */
        .course-card {
            display: flex;
            gap: 0;
            background: #ffffff;
            border: 3px solid #1e3c82;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out;
            min-height: 250px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .course-card:hover {
            box-shadow: 0 15px 40px rgba(30, 60, 130, 0.15);
            transform: translateY(-3px);
        }

        /* Left Side - Icon/Badge */
        .card-left {
            background: linear-gradient(135deg, #e8f0ff 0%, #d4e3ff 100%);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-width: 200px;
            border-right: 3px solid #1e3c82;
            position: relative;
        }

        .card-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff6b35, #1e3c82);
        }

        .course-icon {
            font-size: 56px;
            margin-bottom: 15px;
        }

        .course-code {
            font-size: 48px;
            font-weight: 700;
            color: #1e3c82;
            margin-bottom: 15px;
            text-align: center;
        }

        .badge {
            display: inline-block;
            background: #1e3c82;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            white-space: nowrap;
        }

        .badge.pg {
            background: #ff6b35;
        }

        /* Right Side - Content */
        .card-right {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Top Right - Course Title & Duration */
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            gap: 30px;
        }

        .course-title {
            font-size: 28px;
            font-weight: 700;
            color: #1e3c82;
            line-height: 1.3;
            flex: 1;
        }

        .duration-badge {
            background: #fff4e8;
            border: 2px solid #ff6b35;
            color: #ff6b35;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            white-space: nowrap;
            text-align: center;
            min-width: 120px;
        }

        /* Middle - Subjects List */
        .subjects-section {
            margin-top: 20px;
            margin-bottom: auto;
        }

        .subjects-label {
            font-size: 14px;
            font-weight: 700;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .subjects-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .subjects-list li {
            font-size: 16px;
            color: #444;
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            line-height: 1.5;
            font-weight: 500;
        }

        .subjects-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
            font-size: 20px;
        }

        /* Divider */
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #1e3c82, transparent);
            margin: 60px 0;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .course-card {
            animation-fill-mode: both;
        }

        .course-card:nth-child(1) { animation-delay: 0.1s; }
        .course-card:nth-child(2) { animation-delay: 0.2s; }
        .course-card:nth-child(3) { animation-delay: 0.3s; }
        .course-card:nth-child(4) { animation-delay: 0.4s; }
        .course-card:nth-child(5) { animation-delay: 0.5s; }

        /* Responsive */
        @media (max-width: 768px) {
            .course-card {
                flex-direction: column;
                min-height: auto;
            }

            .card-left {
                border-right: none;
                border-bottom: 3px solid #1e3c82;
                min-width: auto;
                padding: 30px;
            }

            .card-right {
                padding: 30px;
            }

            .card-top {
                flex-direction: column;
                align-items: flex-start;
            }

            .duration-badge {
                width: 100%;
            }

            .header h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .course-title {
                font-size: 22px;
            }
        }