/* ===== SERVICES PAGE ===== */
.services-section {
  padding: 50px 0 120px 0;
  background: #EFECE3;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;      /* Updated size */
  color: #1A2A4F;         /* Updated color */
  font-family: Arial, sans-serif;  /* Ensures same font */
  margin-bottom: 12px;
  font-weight: 700;
}

.services-intro {
  font-size: 1.18rem;
  max-width: 850px;
  margin: 0 auto 55px;
  color: #333;
  line-height: 1.7;
}

/* Service Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 35px;
}

/* Service Card */
.service-card {
  background: #e8a803;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  border: 2px solid #1c1b1b;
  transition: 0.35s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.45rem;
  color: #000000;
  font-weight: 700;
  margin: 18px 22px 8px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0 22px 26px;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  border-color: #ebd214;
  box-shadow: 0 12px 25px rgba(0,0,0,0.16);
}
