/* ================= ABOUT FMIPA ================= */

.about-section {
  background: linear-gradient(to bottom, #ffffff, #f5f9f7);
  padding: 4rem 1rem;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #14532d; /* hijau akademik */
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  letter-spacing: 0.03em;
}

/* Content */
.about-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.about-content strong {
  color: #166534;
}

/* Highlight */
.about-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-highlight div {
  background: #ecfdf5;
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-highlight div:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.about-highlight span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.4rem;
}

.about-highlight p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #14532d;
}
