



.services-list {
  max-width: 900px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.service-row:last-child {
  border-bottom: none;
}

.service-row:hover {
  background-color: #f7f7f7;
}

.service-row i {
  font-size: 40px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 5px;
  width: 50px;
  text-align: center;
}

.service-text h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
}

.service-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Responsywność */

@media (max-width: 600px) {
  .service-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-row i {
    margin-bottom: 10px;
  }
}
