/* General Reset */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fefefe;
}

:root {
  --primary-color: #b35c00;
  --accent-color: #ffae00;
  --neutral-light: #f8f8f8;
  --neutral-dark: #3a3a3a;
}

/* Icon Circles */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  background-color: #fff4e1;
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.05);
}

/* Services Hero Section */
.services-intro {
  background: linear-gradient(135deg, #3d2200, #b35c00);
  color: #fff;
  padding: 6rem 1rem 4rem;
  text-align: center;
}

.services-intro .container {
  max-width: 900px;
  margin: 0 auto;
}

.services-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-intro p.tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fdfdfd;
}

.intro-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}

.pillar {
  flex: 1 1 300px;
  background: #fff4e1;
  padding: 1.5rem;
  border-radius: 12px;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
}

.pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--neutral-dark);
  line-height: 1.5;
}

/* Services Grid Section */
.services-section {
  padding: 5rem 1rem;
  background-color: var(--neutral-light);
  text-align: center;
}

.services-section .section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--neutral-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-pillars {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pillar,
  .service-card {
    width: 100%;
  }

  .services-intro h1,
  .services-section .section-title {
    font-size: 2rem;
  }
}
