/* ========================================
   СТИЛИ СТРАНИЦЫ "О КОМПАНИИ"
   ======================================== */

.about-hero {
  text-align: center;
  margin: 30px 0;
}

.about-hero img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

/* Секция команды */
.about-team {
  margin: 50px 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.about-team-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-team-item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 4px solid #b0ff00;
}

.about-team-item h3 {
  color: #2c2c2c;
  margin-bottom: 10px;
  font-size: 20px;
}

.about-team-item .position {
  color: #b0ff00;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}

.about-team-item .phone,
.about-team-item .email {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.about-team-item .bio {
  color: #333;
  line-height: 1.6;
  margin-top: 15px;
  font-style: italic;
}

/* Секция достижений */
.about-achievements {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
}

.about-achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.achievement-item {
  padding: 20px;
}

.achievement-item .number {
  font-size: 3em;
  font-weight: bold;
  color: #b0ff00;
  margin-bottom: 10px;
}

.achievement-item .label {
  color: #2c2c2c;
  font-weight: bold;
  font-size: 16px;
}

/* Секция миссии и видения */
.about-mission {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, #2c2c2c, #444);
  color: white;
  border-radius: 10px;
}

.about-mission h2 {
  color: #b0ff00;
  border-bottom-color: #b0ff00;
}

.about-mission p {
  color: #f0f0f0;
  font-size: 18px;
  line-height: 1.8;
}

/* Адаптивность для страницы "О компании" */
@media (max-width: 768px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-team-item {
    padding: 20px;
  }

  .about-team-item img {
    width: 120px;
    height: 120px;
  }

  .about-achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-mission {
    padding: 30px 20px;
  }
}
