/* ========================================
   СТИЛИ ГЛАВНОЙ СТРАНИЦЫ
   ======================================== */

.home-hero {
  text-align: center;
  margin: 30px 0;
}

.home-hero img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.home-title {
  font-size: 32px;
  color: #2c2c2c;
  margin: 30px 0;
  text-align: center;
  font-weight: bold;
}

.home-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.home-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

/* Секция услуг на главной */
.home-services {
  margin: 50px 0;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.home-service-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.home-service-item img {
  max-width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.home-service-item h3 {
  color: #2c2c2c;
  margin-bottom: 15px;
  font-size: 18px;
}

.home-service-item p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Секция персонала на главной */
.home-personnel {
  margin: 50px 0;
}

.home-personnel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.home-personnel-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.home-personnel-item:hover {
  transform: translateY(-3px);
}

.home-personnel-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #b0ff00;
}

.home-personnel-item h3 {
  color: #2c2c2c;
  margin-bottom: 10px;
  font-size: 18px;
}

.home-personnel-item .position {
  color: #666;
  font-style: italic;
}

/* Адаптивность для главной страницы */
@media (max-width: 768px) {
  .home-title {
    font-size: 24px;
  }

  .home-services-grid,
  .home-personnel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-service-item,
  .home-personnel-item {
    padding: 20px;
  }
}
