.column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
  }
  .card img {
    max-height: 600px;
    width: 100%;
}
  
  .about-section {
    padding: 50px;
    text-align: center;
    background-color: rgba(17, 25, 40, 0.25);;
    color: white;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color: grey;
  }
  
  .button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button:hover {
    background-color: #555;
  }
  
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
    }
  }

  .join-our-team {
    background-color: #f4f4f4;
    padding: 30px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.join-our-team h2 {
    color: #333;
    font-size: 30px;
    margin-bottom: 20px;
}

.join-our-team p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.join-our-team a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.join-our-team a:hover {
    color: #0056b3;
}