.services-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.services-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-item {
  width: 300px;
  max-width: 100%;
  flex-grow: 1;
  display: flex;
  padding: 34px 26px;
  gap: 24px;
  border: 1px solid var(--bg-light);
  border-radius: 8px;
  background-color: var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item svg {
  min-width: 36px;
  width: 48px;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-content a {
  font-weight: bold;
  color: var(--text-light);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-content a:hover {
  color: var(--theme-primary);
}

.service-content a::after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c87ac' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M12 5l7 7-7 7'/></svg>");
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  vertical-align: middle;
}