.chairman-desk-section {
  margin-top: 0;

    background-color: white; /* Overall background color */
}

.chairman-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.chairman-photo {
    width: 100%;
    object-fit: cover;
    border-radius: 0; 
}

.chairman-message-section {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .chairman-message-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .chairman-message-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  
  .cards-section {
    /* padding: 60px 0; */
    background-color: #81847E; 
  }
  
  .info-card {
   
    background-color: #B2A67F; 
    padding: 30px; 
    margin: 20px 0; 
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); 
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
  }
  
  .info-card h3 {
    font-size: 1.8rem; 
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .info-card p {
    font-size: 1.1rem; 
    color: #f1f1f1; 
  }
  
  .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5); 
  }
  