* {
  box-sizing: border-box;
}

:root {
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text-strong: #1f2a37;
  --text-muted: #5f6b7a;
  --accent: #1f6fe5;
  --shadow: 0 18px 40px rgba(15, 24, 22, 0.12);
}

.about-hero {
  position: relative;
  margin-top: 70px;
  padding: 90px 24px 110px;
  background: url("../images/hero-image.png") no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.65)
  );
}

.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.about-hero h1 {
  margin: 0;
  font-size: 2.6rem;
  color: var(--text-strong);
}

.about-hero p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-main {
  max-width: 1150px;
  margin: -60px 35px 60px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
}

.about-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-story__text h2 {
  margin: 0 0 12px;
  font-size: 2.1rem;
  color: var(--text-strong);
}

.about-story__text p {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.highlight-card {
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.highlight-card span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
}

.highlight-card p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.about-story__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-values {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.values-header h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.values-header p {
  margin: 0;
  color: var(--text-muted);
}

.values-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.value-card {
  padding: 18px 20px;
  background: var(--surface-soft);
  border-radius: 18px;
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-mission {
  display: flex;
  justify-content: center;
}

.mission-card {
  width: 100%;
  max-width: 980px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(
    90deg,
    rgba(77, 163, 255, 0.16),
    rgba(31, 111, 229, 0.18)
  );
  padding: 28px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.mission-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.mission-card p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-hero__content {
    padding: 24px;
  }

  .about-hero h1 {
    font-size: 2.1rem;
  }

  .mission-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .about-main {
    margin-top: -40px;
  }

  .about-hero h1 {
    font-size: 1.9rem;
  }
}
