/**
 * Services Grid section
 */

.services {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.services h2 {
  margin-bottom: 18px;
}

.services-grid {
  gap: 20px;
}

.services-grid > * {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 260px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.service-card.two-column {
	flex: 1 1 calc(50% - 14px);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 148, 216, 0.3);
}

.service-card p {
  font-size: 14px;
  color: var(--color-ink-muted);
  line-height: 1.6;
}
@media screen and (max-width:1200px){
.service-section-heading br {
	display: none;
}
.full-width-content-wrap {
	padding: 40px;
}
}
@media screen and (max-width:768px){
.two-column-list {
	column-count: 1;
}
}