.hero {
  height: 360px;
  position: relative;
}

.hero img {
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.about-page {
  max-width: 980px;
  padding-top: 2.5rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.about-text {
  max-width: 720px;
  margin: 0 auto;
}

.about-text p:first-of-type {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #eef2f7;
}

.about-text h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  margin-top: 1.4rem;
  color: #333;
}

.about-text h3:not(:first-of-type) {
  padding-top: 1.1rem;
  border-top: 1px solid #eef2f7;
}

.about-text p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.guarantee-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: #f1f7ff;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid #e6f0ff;
}

.guarantee-badge img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

.guarantee-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .guarantee-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.25rem 1.25rem;
  }

  .guarantee-badge img {
    width: 96px;
    height: 96px;
  }
}
