/* public/css/about.css */

/* Hero */
.about-hero {
  background: linear-gradient(to bottom, #0f3b2e, #1e694d);
  text-align: center;
  padding: 4rem 1rem 6rem;
  color: #fff;
}
.about-hero h1 {
  font-size: 2.0rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.logo-wrapper img {
  max-width: 200px;
}

/* About Desc */
.about-desc {
  padding: 3rem 1rem;
}
.about-desc .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}
.about-desc p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* Visi Misi */
.visi-misi-section {
  padding: 3rem 1rem;
}
.visi-misi-section .container {
  max-width: 900px;
  margin: auto;
}
.image-row img,
.image-grid img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.image-grid {
  display: flex;
  gap: 1rem;
}
.image-grid img {
  width: 48%;
}
.visi-box,
.misi-box {
  background-color: #003d2c;
  color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.visi-box h2,
.misi-box h2 {
  margin-top: 0;
}
.misi-box ol {
  padding-left: 1.2rem;
}
.misi-box li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Program */
.program-achievements {
  padding: 4rem 1rem;
}
.program-achievements .container {
  max-width: 1100px;
  margin: auto;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #003d2c;
}
.program-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.program-cards .card {
  flex: 1;
  padding: 2rem;
  border: 2px solid #88aa8f;
  border-radius: 10px;
  text-align: center;
  background-color: #f4f8f4;
  font-size: 1.2rem;
  font-weight: 600;
  color: #003d2c;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  min-width: 200px;
}
.program-cards .card:hover {
  background-color: #0baa0bff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.achievement-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
  line-height: 1.8;
  color: #1a1a1a;
}

.achievement-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0f3b2e;
}

.achievement-section .intro,
.achievement-section .closing {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #333;
}

.achievement-list {
  text-align: left;
  margin: 30px auto;
  max-width: 800px;
}

.achievement-list h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #0f3b2e;
}

.achievement-list ul {
  list-style: none;
  padding: 0;
}

.achievement-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  padding-left: 20px;
  position: relative;
}

.achievement-list li::before {
  content: "✔";
  color: #1e694d;
  font-weight: bold;
  position: absolute;
  left: 0;
}
