.euroavia-team-section {
  width: 100%;
  height: 50vh;
  min-height: 380px; 
  
 background: linear-gradient(
      135deg, 
      rgba(3, 43, 76, 0.55) 0%, 
      rgba(0, 20, 40, 0.65) 100%
    ),
    url('../../../images/home/desktop/local-board.jpg');
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.team-content-wrapper {
  max-width: 750px;
  width: 100%;
}

.team-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.team-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
  color: #d1e2ef;
  padding: 0 10px;
}

.team-btn {
  display: inline-block;
  background:  #003366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 115, 230, 0.3);
}

.team-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 115, 230, 0.4);
}

@media (max-width: 768px) {
  .euroavia-team-section {
    height: 50vh;
    min-height: 400px;
    padding: 30px 15px;
    background-image: linear-gradient(
        135deg, 
        rgba(3, 43, 76, 0.55) 0%, 
        rgba(0, 20, 40, 0.65) 100%
      ),
      url('../../../images/home/mobile/local-board.jpg');
  }

  .team-title {
    font-size: 2rem;
  }

  .team-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .team-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}