.services-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  text-align: center;
  color: #222;
}

.services-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0d47a1; /* Синий акцент */
}

.services-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: #0d47a1;
}

.service-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0d47a1;
}

.service-text {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.services-btn-wrap {
  margin-top: 50px;
}

.services-btn {
  background-color: #0d47a1;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.services-btn:hover {
  background-color: #083978;
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Адаптивность для телефонов */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}