.elementor-196 .elementor-element.elementor-element-ba93c07{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-196 .elementor-element.elementor-element-8ab7f99{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}@media(min-width:768px){.elementor-196 .elementor-element.elementor-element-ba93c07{--content-width:1600px;}.elementor-196 .elementor-element.elementor-element-8ab7f99{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-2861fd7 *//* Genel Ayarlar */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.team-section {
  text-align: center;
  padding: 40px 20px;
}

.team-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.team-title span {
  color: orange;
}

.team-container {
  display: flex;
  justify-content: center;
  column-gap: 50px;
  flex-wrap: wrap;
}

.team-card {
  width: 400px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #f9f9f9;
}

.team-card:hover {
  transform: translateY(-10px);
}

.image-container {
  overflow: hidden;
  position: relative;
  border-radius: 8px 8px 0 0;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.image-container:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.text-container {
  padding: 15px;
  text-align: center;
  background: #fff;
}

.text-container h3 {
  font-size: 18px;
  margin: 8px 0;
  color: #000;
}

.text-container p {
  color: #777;
  font-size: 14px;
  margin: 0;
}/* End custom CSS */