    .colegio-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
    }
    .colegio-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    .colegio-img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    .colegio-logo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid white;
        margin-top: -40px;
        margin-left: 20px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        background: white;
    }
    .colegio-body {
        padding: 20px;
        position: relative;
    }
    .colegio-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #28a745;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    .colegio-stats {
        display: flex;
        justify-content: space-around;
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid #eee;
        margin-top: 15px;
    }
    .stat-item h5 {
        margin: 0;
        color: #28a745;
        font-weight: bold;
    }
    .stat-item p {
        margin: 0;
        font-size: 0.8rem;
        color: #666;
    }
