.txt-4{
	display:-webkit-box;
overflow:hidden;
text-overflow:ellipsis;
-webkit-line-clamp:4;
-webkit-box-orient:vertical;
}

.main-content {
            padding: 30px 0;
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #1a5d8c;
            border-left: 4px solid #2ecc71;
            padding-left: 10px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-header {
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            color: white;
        }
        
        .card-header img {
        	width: 100%;
        	height: 300px;
        }
        
        
        .secondhand .card-header {
            background-color: #1a5d8c;
        }
        
        .jobs .card-header {
            background-color: #2ecc71;
        }
        
        .card-body {
            padding: 15px;
        }
        

        
        .price {
            color: #e74c3c;
            font-weight: bold;
            font-size: 18px;
            margin: 10px 0;
        }
        
        .salary {
            color: #2ecc71;
            font-weight: bold;
            font-size: 18px;
            margin: 10px 0;
        }
        
        .location, .date {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .tag {
            display: inline-block;
            background-color: #e0f7fa;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .btn {
            display: inline-block;
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            float: right;
            transition: background-color 0.3s ease;
        }
        
        .btn:hover {
            background-color: #154360;
        }
        
        .job-btn {
            background-color: #2ecc71;
        }
        
        .job-btn:hover {
            background-color: #27ae60;
        }
        
