/* Expertise Approach Section */
.expertise-approach-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.expertise-approach-header {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
}

.expertise-approach-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.expertise-approach-subheading {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.expertise-approach-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.expertise-approach-benefit h3 {
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 1rem;
  font-weight: 600;
}

.expertise-approach-benefit div {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .expertise-approach-title {
    font-size: 2.2rem;
  }

  .expertise-approach-benefits {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .expertise-approach-section {
    padding: 4rem 0;
  }

  .expertise-approach-title {
    font-size: 2rem;
  }

  .expertise-approach-subheading {
    font-size: 1rem;
  }

  .expertise-approach-benefits {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .expertise-approach-section {
    padding: 3rem 0;
  }

  .expertise-approach-title {
    font-size: 1.8rem;
  }

  .expertise-approach-header {
    margin-bottom: 2rem;
  }

  .expertise-approach-benefit h3 {
    font-size: 1.3rem;
  }
}
