/* ================= ABOUT HERO ================= */

.about-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: auto;
}

/* ================= ABOUT SECTION ================= */

.about-section {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.about-section p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ================= FOUNDER ================= */

.about-founder {
  margin-top: 50px;
}

.founder-card {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  flex-wrap: wrap;
  transition: 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e2e8f0;
}

.founder-content {
  flex: 1;
  text-align: left;
}

.founder-content h2 {
  margin-bottom: 5px;
}

.role {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ================= LIST ================= */

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #334155;
}

/* ================= CTA GROUP ================= */

.cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* ================= FINAL CTA ================= */

.final-cta {
  text-align: center;
  padding: 70px 20px;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  color: #475569;
  margin-bottom: 20px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .about-hero h1 {
    font-size: 28px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-section {
    padding: 0 10px;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .founder-content {
    text-align: center;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-group a {
    width: 85%;
    text-align: center;
    display: block;
  }

}