body {
  background: var(--bg-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  background: url("../images/1294828.jpg") center / cover no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 23, 20, 0.3), rgba(26, 23, 20, 0.7));
}

.about-content {
  max-width: 760px;
  margin: -4rem auto 3rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.about-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-hero {
    height: 35vh;
    min-height: 200px;
  }

  .about-content {
    margin: -2.5rem auto 2rem;
    padding: 0 1rem;
  }

  .about-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .about-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    text-align: left;
  }

  [dir="rtl"] .about-card p {
    text-align: right;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
