/* ================= ABOUT PAGE STYLES ================= */

.about {
  background: #f3f6f7;
  padding: 60px 0;
}

.down {
  
  margin: 200px 0;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.about-content {
  flex: 1 1 600px;
}

.about-content h2 {
  color: #0b6b3a;
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #0b6b3a;
  margin-top: 8px;
  border-radius: 2px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

/* CARDS */
.card-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.card {
  flex: 1 1 250px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #0b6b3a;
  margin-bottom: 10px;
}

/* OBJECTIVES */
.objectives {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.objectives li {
  margin-bottom: 8px;
  color: #333;
}

/* INFRASTRUCTURE */
.infrastructure-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.infra-card {
  flex: 1 1 200px;
  background: #e8f0ea;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: #0b6b3a;
}

/* BUTTON */
.btn-readmore {
  margin-top: 15px;
  display: inline-block;
  background: #0b6b3a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  cursor: pointer;
}

.btn-readmore:hover {
  background: #0f8a4d;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .card-section,
  .infrastructure-cards {
    flex-direction: column;
  }

  .objectives {
    text-align: left;
  }
}
