.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

section#services {
    padding: 60px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4a853, #e6c47a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.service-card h3 {
  font-size: 24px;
  color: #1a2744;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  font-size: 15px;
}

.section-title h2
 {
    font-size: 42px;
    color: #1a2744;
    margin-bottom: 15px; 
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title .accent-line {
    width: 80px;
    height: 3px;
    background: #d4a853;
    margin: 20px auto 0;
}