.page-header{
    margin-top: 50px;
}
/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: #2b2826;
  border: 1px solid #4e463f;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 1rem;
  color: #d6b36a;
}

.service-card p {
  margin: 0 1rem 1.5rem;
  color: #ccc1ae;
}
