.about-hero {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 100px 20px;
}

.about-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 580px;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #0f172a;
  margin-bottom: 16px;
}

.hero-text .highlight {
  color: #2563eb;
}

.hero-text .lead {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 14px;
}

.hero-text .muted {
  color: #64748b;
  line-height: 1.6;
}

.hero-image {
  flex: 1 1 420px;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Founder Section */
/* Founder Section */
.founder-section {
  background: #ffffff;
  padding: 120px 20px;
}

.founder-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.founder-image {
  flex: 1 1 25%;
  text-align: center;
}

.founder-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.founder-text {
  flex: 1 1 50%;
}

.founder-text h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.founder-text h3 {
  font-size: 1.4rem;
  color: #334155;
  margin-bottom: 18px;
}

.founder-text .highlight {
  color: #2563eb;
}

.founder-text .lead {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

.founder-text .muted {
  color: #64748b;
  font-style: italic;
  line-height: 1.6;
}

.signature {
  margin-top: 24px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .founder-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .founder-image img {
    max-width: 320px;
  }

  .founder-text h2 {
    font-size: 1.8rem;
  }
}


/* Values Section */
.about-values {
  background: #f8fafc;
  padding: 100px 20px;
  text-align: center;
}

.values-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #0f172a;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.value-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    margin-top: 20px;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}
