.main-container {
    margin-top: 0px;
}
/* History Section */
.history-section {
    background-color: #fff;
    padding: 80px 0;
  }
  
  .history-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
  }
  
  .history-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .history-section img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  
  .history-section .read-more {
    display: inline-block;
    background-color: #04a57d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
  }

  .read-more {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
  }
  
  .history-section .read-more:hover {
    background-color: #fff;
    border: 3px solid #04a57d;
    color: #04a57d;
    transition: all 0.3s ease-in-out;
  }





  /* Mission Section */
  .mission-section {
    /* background-color: #f7f7f7; */
    padding: 10px 0;
    margin: 30px;
  }
  
  .mission-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .mission-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .mission-section img {
    max-width: 100%;
  }
  





 /* Contact Section */
.contact-section {
    padding: 80px 0;
    /* background-color: #f7f7f7; */
  }
  
  #contact-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  #contact-section form {
    margin-bottom: 30px;
  }
  
  #contact-section form .form-group {
    margin-bottom: 25px;
  }
  
  #contact-section form .form-group label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  #contact-section form input[type="text"],
  #contact-section form input[type="email"],
  #contact-section form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: #f1f1f1;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  #contact-section form textarea {
    height: 150px;
  }
  
  #contact-section form button[type="submit"] {
    display: inline-block;
    background-color: #04a57d;
    color: #fff;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #contact-section form button[type="submit"]:hover {
    background-color: #b00913;
  }
  
  #contact-section .col-md-6 p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #333;
  }

  

  /* Team Members Section */
  .team-members-section {
    /* background-color: #f6f6f6; */
    padding: 80px 0;
  }
  
  .team-section {
    margin-top: 60px;
  }
  
  .card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .card img {
    max-width: 100%;
    border-radius: 50%;
  }
  
  .card h3 {
    margin-top: 30px;
    font-size: 22px;
  }
  
  .card p {
    margin-top: 10px;
    font-size: 16px;
    color: #777;
  }
  
  .social-media-links {
    margin-top: 20px;
  }
  
  .social-media-links a {
    color: #333;
    margin-right: 15px;
  }
  
  .social-media-links a:hover {
    color: #007bff;
  }
  
  .social-media-links i {
    font-size: 20px;
  }
  
  





  /* Call to Acction Banner Section */
  .call-to-action-banner {
    /* background-color: #f8f8f8; */
    padding: 60px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

  }
  
  .call-to-action-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .call-to-action-banner p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .call-to-action-banner form input[type="email"] {
    padding: 12px;
    border-radius: 4px;
    border: none;
    width: 400px;
    max-width: 100%;
    margin-right: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
  
  .call-to-action-banner form button[type="submit"] {
    padding: 12px 40px;
    background-color: #04a57d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .call-to-action-banner form button[type="submit"]:hover {
    background-color: #038a64;
  }
  
  