/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 44:0 Unexpected "<"
Line 95:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .company-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }

  .info-card {
    flex: 1 1 30%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgb(0 0 0 / 31%);
    padding: 40px;
    margin-top:20px;
    margin-bottom:20px;
  }

  .info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 3px solid #297acc;
    display: inline-block;
    padding-bottom: 5px;
  }

  .info-card p {
    margin: 6px 0;
  }

  .info-card strong {
    font-weight: 600;
  }
</style>
<style>
  .team-section {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
  }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .team-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    color: white;
    text-align: center;
  }

  .team-card img {
    border-radius: 12px;
    width: 100%;
    /* max-height: 200px; */
    object-fit: cover;
    margin-bottom: 15px;
  }
 .team-section h2{
   text-align: center;
   padding-bottom:20px;
 }
  .team-card h4 {
    font-size: 28px;
    font-weight: 600;
    margin: 5px 0;
  }

  .team-card .email {
    font-size: 17px;
    color: black;
    margin-bottom: 10px;
  }

  .team-card .bio {
    font-size: 18px;
    color: #00735c;
    
  }
</style>