body {
  font-family: "Inter", sans-serif;
  padding-top: 10vh;
  background-color: #19171b;
}

.services-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  padding: 4rem;
}

.service-box {
  background-color: #19171b;
  border: 1px solid #333;
  padding: 2.5rem;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service-box h3 {
  font-size: 1.5rem;
  color: #92d0c3;
  margin-bottom: 1.5rem;
  margin-top: 0rem;
  padding-bottom: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-bottom: 2px solid #92d0c3;
}

.service-box p {
  color: white;
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

/* Responsive: 1 column on small screens */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* Switch to 1 column */
  }
}

