/* ================= ABOUT HERO ================= */

.about-hero {
  background: #0b1f3b; /* deep blue like screenshot */
  padding: 4rem 0;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-text h1 {
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.about-hero-text p {
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 520px;
}

.about-hero-image img {
  width: 100%;
  border-radius: 4px;
}

/* ================= COMMITMENT ================= */
.about-commitment {
  background: #ffffff;
  padding: 4.5rem 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.commitment-logo {
  width: 70px;
  margin-bottom: 1.5rem;
}

.about-commitment h2 {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #0f172a;
}

.about-commitment p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
}
