.about-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.about-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.section-badge {
  display: inline-block;
  background: #212529;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #212529 0%, #495057 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #212529;
}

.brand-logo-wrapper {
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.brand-logo-wrapper:hover {
  transform: translateY(-8px);
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.brand-logo-wrapper:hover .brand-logo {
  border-color: #212529;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.brand-name {
  margin-top: 1rem;
  font-weight: 700;
  color: #212529;
  transition: color 0.3s ease;
}

.brand-logo-wrapper:hover .brand-name {
  color: #495057;
}

.stats-card {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}
