/* About Us Section */
.about-section {
  background-color: #f8f9fc;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #1e293b;
}

/* About Container (Image + Text) */
.about-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #2563eb;
  margin-top: 8px;
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Mission, Vision, Values */
.mvv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.mvv-box {
  flex: 1 1 30%;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-box h3 {
  color: #2563eb;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mvv-box p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
}

.mvv-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .mvv-container {
    flex-direction: column;
  }

  .mvv-box {
    margin-bottom: 20px;
  }
}
