.about-hero {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
              url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Dubai_Creek.JPG/1280px-Dubai_Creek.JPG') center/cover no-repeat;
  color: #ffffff;
  padding: 30px 20px;
}

.about-hero-text h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.about-main {
  padding: 50px 40px;
  background: #ffffff;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 35px;
  padding: 24px;
  background: #eeeff1;
  border-radius: 12px;
}

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

.about-text {
  flex: 1;
}

.about-text h3 {
  color: #2c508e;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.about-box {
  flex: 1;
  min-height: 220px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbe7ff, #f6f0d4);
  color: #0a1f44;
  font-size: 1.4rem;
  font-weight: bold;
  border: 1px solid #d8d8d8;
}

@media (max-width: 900px) {
  .about-section,
  .about-section.reverse {
    flex-direction: column;
  }

  .about-main {
    padding: 35px 20px;
  }

  .about-hero-text h2 {
    font-size: 2.1rem;
  }
}
