/* ================= MANUFACTURING APPROACH ================= */

.approach-section {
  background: #31546c;
  padding: 100px 60px;
  color: #ffffff;
}

.approach-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center; /* 👈 center everything */
}

.approach-container h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.approach-sub {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 60px;
}

/* ITEMS */
.approach-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.approach-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.approach-item p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

.approach-item h3 {
  color: #111111;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .approach-section {
    padding: 70px 24px;
  }

  .approach-container h2 {
    font-size: 28px;
  }

  .approach-items {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
