
        /* Hero Section */
        .mk-hero-section {
            position: relative;
            height: 345px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                        url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?w=1300&h=345&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .mk-hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .mk-hero-btn {
            background: white;
            color: #1a1a1a;
            padding: 16px 48px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mk-hero-btn:hover {
            transform: scale(1.05);
        }


        /* Container */
        .mk-container {
            max-width: 1500px;
            margin: 0px auto 0;
            padding: 0 20px 40px;
            position: relative;
        }

        /* Main Card */
        .mk-main-card {
            background: white;
            border-radius: 0;
            padding: 50px;
            /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
        }

        .mk-event-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .mk-price-section {
            margin-bottom: 30px;
            color: #193669;
            font-size: 28px;
            font-weight: 700;
        }

        .mk-price-label {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .mk-price-value {
            font-size: 18px;
            color: #1a1a1a;
        }

        .mk-line{
            margin-bottom: 25px;
            border-bottom: 1px solid #E8E8E8;
        }

        /* Info Grid */
        .mk-info-grid {
            margin-bottom: 40px;
        }

        .mk-info-row {
            display: flex;
            padding: 5px 0;
            /*border-bottom: 1px solid #e0e0e0;*/
        }

        .mk-info-row:first-child {
            padding-top: 0;
        }

        .mk-info-label {
            font-weight: 600;
            color: #000;
            min-width: 200px;
            flex-shrink: 0;
        }

        .mk-info-value {
            color: #000;
        }

        /* Description Section */
        .mk-description-section {
            margin-bottom: 40px;
        }

        .mk-section-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a1a;
        }


       


        /* Sessions Section */
        .mk-sessions-section {
            margin-bottom: 40px;
        }

        .mk-session-header {
            margin-bottom: 25px;
        }

        .mk-session-dates {
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .mk-session-total {
            color: #1a1a1a;
        }

        /* Table */
        .mk-table-wrapper {
            overflow-x: auto;
            margin-bottom: 20px;
        }

        .mk-sessions-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #e0e0e0;
        }

        .mk-sessions-table th {
            background: #f8f8f8;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: #1a1a1a;
            border: 1px solid #e0e0e0;
        }

        .mk-sessions-table td {
            padding: 15px;
            color: #555;
            border: 1px solid #e0e0e0;
        }

        .mk-timezone {
            color: #666;
            font-size: 14px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .mk-timezone-icon {
            font-size: 12px;
        }

        /* Book Button */
        .mk-book-btn {
            background: #2c4875;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .mk-book-btn:hover {
            background: #1e3355;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mk-hero-section {
                height: 250px;
            }

            .mk-hero-title {
                font-size: 28px;
                letter-spacing: 1px;
            }

            .mk-hero-btn {
                padding: 12px 32px;
                font-size: 14px;
            }

            .mk-container {
                /*margin-top: -30px;*/
                padding: 0 15px 30px;
            }

            .mk-main-card {
                padding: 30px 25px;
            }

            .mk-event-title {
                font-size: 22px;
            }

            .mk-info-row {
                flex-direction: column;
                gap: 5px;
                padding: 12px 0;
            }

            .mk-info-label {
                min-width: auto;
                font-size: 15px;
            }

            .mk-info-value {
                font-size: 15px;
            }

            .mk-section-title {
                font-size: 20px;
            }

            


            .mk-sessions-table {
                font-size: 14px;
            }

            .mk-sessions-table th,
            .mk-sessions-table td {
                padding: 10px;
            }

            .mk-book-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .mk-hero-title {
                font-size: 20px;
            }

            .mk-main-card {
                padding: 20px 15px;
            }

            .mk-event-title {
                font-size: 18px;
            }

            .mk-price-label,
            .mk-price-value {
                font-size: 16px;
            }
        }