.reg-number {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.about-stats {
  display: flex;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 40px 0;
}
.about-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
}

.about-why {
  padding: 20px 0 40px;
}
.about-why h2 {
  margin-bottom: 36px !important;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-item {
  padding: 28px;
  background: #f0efec;
  border-radius: 4px;
}
.why-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.why-item h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: #2a2a2a !important;
  margin: 0 0 10px !important;
}
.why-item .paragraph {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #555 !important;
  margin: 0 !important;
  column-count: 1 !important;
}

.about-team {
  padding: 20px 0 40px;
}
.about-team h2 {
  margin-bottom: 36px !important;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.team-member {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}
.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 12px;
  background: #e8e6e2;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.team-member:hover .team-photo img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #2a2a2a;
  margin-bottom: 2px;
}
.team-role {
  font-size: 13px;
  color: #888;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .about-stats { flex-direction: column; gap: 24px; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
}
