.about-section {
  background: #F3FBF6;
  padding: 80px 20px;
}

.about-container {
  max-width: 1000px;
  margin: auto;
  background: #FFFFFF;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 30px;
}

.about-intro,
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #2B2B2B;
  margin-bottom: 20px;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.about-box {
  background: #E0F0FF;
  padding: 25px;
  border-radius: 10px;
}

.about-box h3 {
  color: #1F3C88;
  margin-bottom: 10px;
}

.founder-section {
  margin-top: 50px;
}

.founder-section h2 {
  text-align: center;
  font-size: 28px;
  color: #1F3C88;
  margin-bottom: 25px;
}

.founder-card {
  background: #FFFFFF;
  border-left: 5px solid #1E90FF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.founder-info h3 {
  font-size: 22px;
  color: #1E90FF;
}

.founder-title {
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 15px;
}

.about-values {
  margin-top: 50px;
}

.about-values h2 {
  font-size: 26px;
  color: #1F3C88;
  margin-bottom: 15px;
}

.about-values ul {
  padding-left: 20px;
}

.about-values li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #2B2B2B;
}

/* Responsive */
@media (max-width: 768px) {
  .about-mission-vision {
    grid-template-columns: 1fr;
  }

  .about-container {
    padding: 30px;
  }

  .about-title {
    font-size: 28px;
  }
}
/* ================= DEVELOPER SECTION ================= */
.developer-section {
  margin-top: 60px;
}

.developer-section h2 {
  text-align: center;
  font-size: 26px;
  color: #1F3C88;
  margin-bottom: 25px;
}

.developer-card {
  background: #F9FAFB;
  border-left: 4px solid #4CAF50;
  padding: 25px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.developer-name {
  font-size: 20px;
  font-weight: 700;
  color: #1E90FF;
  margin-bottom: 5px;
}

.developer-role {
  font-size: 14px;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 15px;
}

.developer-text {
  font-size: 15px;
  color: #2B2B2B;
  line-height: 1.7;
  margin-bottom: 10px;
}