.about-us-page {
  min-height: calc(100vh - 200px);
  background-color: #eef2f6;
  padding: 90px 20px 48px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-us-page,
.about-us-page * {
  text-transform: none !important;
}

.about-us-card {
  width: 100%;
  max-width: 680px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 36px 34px 28px;
  color: #4c5564;
}

.about-us-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2937;
  /* Override global `h1` styles from content.css */
  width: auto;
  padding: 0;
}

.about-us-section {
  margin-bottom: 20px;
}

.about-us-section h2,
.about-us-values h2,
.about-us-collection h2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2937;
}

.about-us-section p,
.about-us-collection p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}

.about-us-values {
  margin-top: 6px;
}

.about-us-values-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-us-value-item {
  text-align: center;
}

.about-us-icon-svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  color: #5a56e2;
  display: block;
}

.about-us-value-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2937;
}

.about-us-value-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.about-us-collection {
  margin-top: 22px;
  border-top: 1px solid #e2e2e2;
  padding-top: 18px;
  text-align: center;
}

.about-us-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #5a56e2;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.about-us-cta:hover {
  background: #4c46d3;
}

@media (max-width: 768px) {
  .about-us-card {
    padding: 30px 22px 24px;
  }

  .about-us-title {
    font-size: 30px;
  }

  .about-us-section h2,
  .about-us-values h2,
  .about-us-collection h2 {
    font-size: 20px;
  }

  .about-us-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
