/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 02 2025 | 14:47:27 */
/* Базовые стили */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f5f0;
  color: #333;
  margin: 0;
  padding: 0;
}

.team-block {
  padding: 80px 20px;
  background-color: #f5f2ec;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.team-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.team-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.team-text {
  flex: 1 1 55%;
}

.team-text h3 {
  font-size: 22px;
  margin-top: 0;
  color: #222;
}

.team-text h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #444;
}

.team-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.team-text li {
  margin-bottom: 8px;
}

.team-text p {
  margin-top: 10px;
  line-height: 1.6;
}

.team-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.team-button:hover {
  background-color: #e6b800;
}

.team-image {
  flex: 1 1 40%;
  text-align: center;
}

.team-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Адаптив */
@media (max-width: 768px) {
  .team-content {
    flex-direction: column;
  }

  .team-title {
    font-size: 28px;
  }

  .team-subtitle {
    font-size: 16px;
  }
}