.college-list-section {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.heading h2 {
    font-size: 2rem;
    color: #2d2d2d;
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.heading p {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
    padding: 10px 15px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.table th {
    background-color: #4CAF50;
    color: #fff;
    font-weight: 500;
    border: 1px solid white;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: #f3f3f3;
}

.table tbody tr:hover {
    background-color: #e6f7e9;
    transition: background-color 0.2s ease;
}
