/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  
  .container1{
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    color: #1E90FF; /* Blue */
    text-align: center;
    margin-bottom: 10px;
  }
  
  .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
  }
  
  .leaders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .leader-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }
  
  .leader-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .leader-header {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }
  
  .leader-header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .leader-info {
    flex: 1;
  }
  
  .leader-info h3 {
    color: #1E90FF; /* Blue */
    margin-bottom: 10px;
  }
  
  .leader-info .role {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .leader-info .short-description {
    color: #333;
    margin-bottom: 15px;
    margin-left: auto;
  }
  
  .btn-read-more {
    background-color: #FFD700; /* Yellow */
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .btn-read-more:hover {
    background-color: #FFA500; /* Darker Yellow */
  }
  
  .leader-details {
    padding: 0 20px 20px 20px;
    display: none; /* Hidden by default */
  }
  
  .leader-details .full-description {
    color: #333;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .leader-header {
      flex-direction: column;
      text-align: center;
    }
  
    .leader-header img {
      width: 120px;
      height: 120px;
    }
  }