.responsive-container-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 60px 20px;
}

.team-card-container {
  width: calc(25% - 15px); /* 4 cards per row on large screens */
  box-sizing: border-box;
}

/* Medium screens - 2 cards per row */
@media (max-width: 1024px) {
  .team-card-container {
    width: calc(50% - 15px);
  }
}

/* Small screens - 1 card per row */
@media (max-width: 600px) {
  .team-card-container {
    width: 100%;
  }
}


.team-card {
  background-color: #1b1b1b;
  border-radius: 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
  
  .team-card:hover {
    transform: translateY(-5px);
  }
  
  .team-img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin: 10px 0 15px;
  }
  
  .name {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0 5px;
  }
  
  .position {
    color: #16724B;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .text-blk {
    font-size: 15px;
    color: #ccc;
    flex-grow: 1;
    line-height: 25px;
    text-align: center;
    margin: 0 0 20px 0;
  }

  .text-blk:not(:empty)::before {
    content: '"';
  }
  
  .text-blk:not(:empty)::after {
    content: '"';
  }
  
  /* Social / Button area */
  .buttons, .social-media-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
  }
  
  .buttons a {
    background: #16724B;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background 0.3s;
  }
  
  .buttons a:hover {
    background: #16724cb2;
  }
  
  /* Section headers */
  .section-head-text {
    font-size: 3em;
    font-weight: 700;
    color: whitesmoke;
    margin: 40px 0 80px;
    text-align: center;
    margin-top: 100px;
  }
  
  .section-subhead-text {
    font-size: 25px;
    color: #999;
    line-height: 35px;
    max-width: 470px;
    text-align: center;
    margin: 0 auto 60px;
  }
  
  /* Outer layout containers */
  .outer-container {
    padding: 10px 50px;
  }
  
  