section:nth-child(even) {
    background-color: #edf1f3; /* Light blue background for odd sections */
  }
 
 /* Custom CSS for unique styling */
 .curriculum-container {
    padding: 50px 0;
  }

  .curriculum-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .curriculum-header h2 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #154f8d;
  }

  .curriculum-category {
    margin-bottom: 40px;
  }

  .curriculum-category h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #154f8d;
    margin-bottom: 20px;
  }

  .curriculum-list {
    list-style-type: none;
    padding-left: 0;
  }

  .curriculum-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .curriculum-list li i {
    margin-right: 10px;
    color: #007bff;
  }

  .curriculum-list li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .curriculum-list li span {
    font-size: 1rem;
    color: #555;
  }

  /* Custom CSS for Key Staff Section */
  .key-staff-container {
    padding: 50px 0;
  }

  .key-staff-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .key-staff-header h2 {
    font-size: 2.5rem;
    color: #154f8d;
    font-weight: bold;
  }

  .key-staff-header p {
    font-size: 1.2rem;
    color: #555;
  }

  .staff-card {
    background-color: #f5f4f42a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
  }

  .staff-card:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }

  .staff-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }

  .staff-card h4 {
    font-size: 1.5rem;
    color: #154f8d;
    margin-bottom: 10px;
  }

  .staff-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
  }

  .staff-card .role {
    font-weight: bold;
    color: #007bff;
  }

  .staff-card .social-links i {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #007bff;
    transition: color 0.3s;
  }

  .staff-card .social-links i:hover {
    color: #0056b3;
  }


  footer {
    background: #f8f9fa;
    color: #6c757d;
  }

  @media (max-width: 768px) {
    .staff-card {
      margin-bottom: 30px;
    }
}
