/* About Section Styling */
.about-section {
  background-color: #fefefe;
}

.about-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #a67c3a;
}

.about-text {
  font-size: 1rem;
  color: #444;
  font-family: 'Playfair Display', serif;
  line-height: 1.7;
}

/* Stat Boxes */
.stat-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #c59d5f;
  font-family: 'Cinzel', serif;
}

.stat-label {
  font-size: 1rem;
  margin-top: 5px;
  color: #555;
  font-family: 'Playfair Display', serif;
}
