/* ============================================================
   Synontech — About
   ============================================================ */

#about {
  background: var(--color-white);
  border-top: 1px solid var(--color-border-gray);
  border-bottom: 1px solid var(--color-border-gray);
}

/* ── Grid layout ── */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.about-text {
  max-width: 800px;
}

.about-text p {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--color-deep-navy);
}

/* ── Mobile ── */
@media (max-width: 992px) {
  .about-grid {
    text-align: left;
  }
}

