.about {
  padding: 70px 50px;
  background: #f8fafc;
}

/* INTRO */
.about-intro {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about-intro h1 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
}

/* IMAGE */
.about-image {
  margin: 50px auto;
  text-align: center;
}

.about-image img {
  width: 75%;
  max-width: 900px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 60px;
}

.about-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: translateY(-10px);
}

.about-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0f4c75;
}

.about-box p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    padding: 50px 20px;
  }

  .about-image img {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}
