   <style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
 
    }
    .college-card {
        max-width: 800px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border: 1px solid #ddd;
    }
    .college-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .college-header h3 {
        margin: 0;
        font-size: 18px;
        color: navy;
        font-weight: 600;
  }
    .college-header img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    .college-info {
        font-size: 14px;
        color: #888;
        font-weight: 500;
        margin-top: 5px;
    }
    .college-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 15px;
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }
    .college-details div {
        padding: 5px;
        background: #f9f9f9;
        border-radius: 5px;
    }
    .college-details span {
        color: #000;
    }
    .rating {
        color: #ffa500;
    }
    .btn-container {
        gap: 10px;
        margin-top: 15px;
        justify-content: flex-end;
    }
    .btn {
        padding: 10px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
    }
    .btn-compare {
        border: 1px solid #444;
        color: #444;
        background: transparent;
    }
    .btn-brochure {
        background: #008000;
        color: #fff;
    }
    @media (max-width: 380px) {
        .college-card {
            padding: 15px;
        }
        .college-header h3 {
            font-size: 16px;
        }
        .college-header img {
            width: 60px;
            height: 60px;
        }
        .college-details {
            grid-template-columns: 1fr;
        }
        .btn-container {
            flex-direction: column;
        }
        .btn {
            text-align: center;
        }
    }
    </style>
    
    
    <style>

    table {
        width: 100%;
       
        border-collapse: collapse;
     
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }
    th, td {
      
    }
    th {
       background-color: #2c3e50;
      color: #ffffff;
      
    }
    td {
        border-bottom: 1px solid #ddd;
    }
    </style>