:root {
    --orange: #ffa500;
    --blue: #007bff;
    --light-bg: #f9f9f9;
    --card-bg: #ffffff;
    --text-color: #333;
    --shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
  }

  body {
    background-color: var(--light-bg);
    color: var(--text-color);
  }

  .banner {
    background: linear-gradient(90deg, #efd5ff 0%, #433fde 100%);
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

  .school-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .banner p {
    font-size: 23px;
}

  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }

  .card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img.card-banner {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }

  .card-content {
    padding: 20px;
  }

  .card-content .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

  .card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .card-text {
    font-size: 0.95rem;
    color: #555;
  }
  .bcc-logo-main {
    border: 15px solid #fff;
    background-size: cover;
    height: 200px;
    width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 50%;
}
.card-title a {
    line-height: 1;
    color: #000;
    text-decoration: none;
    transition: .2s;
}
a:hover {
    color: #575edb;
}
  @media (max-width: 768px) {
    .banner h1 {
      font-size: 1.5rem;
    }

    .banner p {
      font-size: 20px;
    }
  }
  @media only screen and (max-width: 480px){
    .bcc-logo-main {
        border: 5px solid #fff;
        height: 100px;
        width: 100px;
        margin-bottom: 10px;
        border-radius: 50%;
    }
    .banner h1 {
        font-size: 32px;
        line-height: 1;
    }
  }