.mth_main-card {
						
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            max-width: 900px;
            height: auto;
            margin: 0 auto;
        }

        .mth_content-row {
            display: flex;
            min-height: 400px;
        }

        .mth_left-panel {
            flex: 0 0 45%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mth_right-panel {
            flex: 0 0 55%;
            position: relative;
            overflow: hidden;
        }

        .title {
            font-size: 0.85rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        .list-group {
            border: none;
        }

        .list-group-item {
            border: none;
            background: transparent;
            padding: 15px 0;
            cursor: pointer;
            font-size: 0.95rem;
            color: #333;
            border-bottom: 1px solid #696BF1;
            transition: all 0.3s;
            font-weight: 500;
        }

        .list-group-item:hover {
            color: #000;
            padding-left: 10px;
        }

        .list-group-item.active {
            background: transparent;
            color: #000;
            font-weight: 600;
            border-bottom: 1px solid #696BF1;
            padding-left: 15px;
        }

        .image-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mth_info-bubble {
    margin: 0 auto;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: rgba(220, 220, 220, 0.95);
    padding: 10px 20px;     
    font-size: 0.85rem;    
    line-height: 1.4;       
    
    border-radius: 15px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.mth_info-bubble strong {
    font-weight: 600;
    display: inline;        
    margin-bottom: 0;       
    margin-right: 5px;      
}
        .mth_info-bubble.is-top {
    bottom: auto !important; 
    top: 30px !important;
}
        @media (max-width: 768px) {
            .mth_content-row {
                flex-direction: column;
                min-height: auto;
            }

            .mth_left-panel {
                flex: 1;
                padding: 30px 25px;
            }

            .mth_right-panel {
                flex: 1;
                min-height: 350px;
            }

            .title {
                margin-bottom: 20px;
            }

            .mth_info-bubble {
                height: 90px;
                overflow: hidden;
                bottom: 10px;
                left: 20px;
                right: 20px;
                font-size: 10px;
                line-height: 15px;
                padding-bottom: 20px;
            }
            
            .mth_info-bubble.is-top {
        bottom: auto !important;
        top: 10px !important;
    }
        }