.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* STATS */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.about-stats div {
  background: var(--gradient-light);
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
}

.about-stats h4 {
  color: var(--primary-red);
  font-size: 1.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
  }

  .about-img img {
    height: 220px;
  }
}