/* About Us Section */
.about-us-section {
    background-color: #111;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .about-us-title {
    font-size: 2.5em;
    color: #00ffff;
    margin-bottom: 20px;
  }
  
  .about-us-description, .about-us-values {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .company-name {
    color: #00ffff;
    font-weight: bold;
  }
  
  .team-container {
    margin-top: 50px;
  }
  
  .team-title {
    font-size: 2em;
    color: #00ffff;
    margin-bottom: 30px;
  }
  
  .team-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .team-member-card {
    background-color: #1a1a1a;
    border: 2px solid #00ffff;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
  }
  
  .team-member-card:hover {
    transform: scale(1.05);
  }
  
  .team-member-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .team-member-name {
    font-size: 1.3em;
    color: #00ffff;
    margin-bottom: 5px;
  }
  
  .team-member-role {
    font-size: 1.1em;
    color: #aaa;
  }
  