/* Shared Styles Across All Pages */

/* Common Statistics Display */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #5b7fa8 0%, #6b8db8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Common Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #5b7fa8 0%, #6b8db8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Common Section Title */
.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5b7fa8 0%, #6b8db8 100%);
  border-radius: 2px;
}

/* Responsive adjustments for stats */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

