.about-header {
  background: linear-gradient(135deg, rgba(3, 118, 187, 0.92), rgba(2, 90, 148, 0.95));
}

.about-inder-hero {
  padding: 64px 0;
  background-color: var(--color-light-bg);
  opacity: 0;
  transform: translateY(24px);
  transition: var(--transition);
}

.about-inder-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  text-align: center;
}

.inder-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.about-story p {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.inder-quote-section {
  padding: 64px 0 96px;
}

.inder-quote-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
}

.inder-quote-card h2 {
  margin-bottom: 16px;
}

.inder-quote-card p {
  font-size: 1.15rem;
  color: var(--color-text);
}

.inder-quote-card a {
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-story h2 {
    font-size: 1.75rem;
  }

  .inder-quote-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .about-inder-hero {
    padding: 48px 0;
  }

  .about-story p {
    font-size: 1rem;
  }
}
