.services-section {
  padding: var(--padding);
  background: var(--section-white-bg);
}

.services-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Title */
.section-title {
  text-align: center;
  font-family: var(--site-font);
  font-size: 2.765rem;
  color: var(--heading-dark);
  width: 80%;
  margin: 0 auto 60px;
  line-height: normal;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  text-align: center;
  padding: 30px 15px;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 0 10px rgba(207, 206, 206, 0.5);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

/* Icon */
.service-card img {
  margin-bottom: 15px;
  transition: 0.3s;
}

/* Title */
.service-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: var(--site-font);
}

.service-card h3 a {
  color: var(--accent);
  text-decoration: none;
}

/* Description */
.service-card p {
  font-size: 14px;
  color: var(--text-dark);
  font-family: var(--site-font);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
}