 body {
    
        font-family: Arial, sans-serif;
       margin: 0;
         padding: 0;
      background-color: #f9f9f9;
    }

    .cards {
      
      gap: 20px;
      
      padding: 20px;
      
        display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
    }

    .card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     
      flex: 1 1 300px;
      max-width: 600px;
      
      flex: 1 1 45%;  /* 45% width for desktop view */
  margin: 10px;
  border-radius: 5px;
  padding: 15px;
    }

    .hrarea {
      border: 1px solid gray;
      margin: 30px auto;
      width: 90%;
    }

    .President {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }

    .President p {
      text-indent: 40px;
    }
.card h2 {
  color: #912109;
}

.hrarea {
  border: 1px solid gray;
  margin-bottom: 2px;
  border-radius: 5px;
}

/* Mobile View Styles */
@media screen and (max-width: 768px) {
  .cards {
    flex-direction: column;  /* Stack the cards vertically */
  }

  .card {
    flex: 1 1 100%; /* 100% width on mobile */
    margin: 10px 0;
  }

  .President p {
    font-size: 14px; /* Adjust font size for readability on smaller screens */
  }

  h2 {
    font-size: 18px; /* Adjust font size for smaller screens */
  }
}
   