.about {
  background-color: #f5f9fa;
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #4a6670;
}

.about-description {
  margin-bottom: 2rem;
  color: #5a6e72;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a6670;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #5a6e72;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about-image {
    margin-bottom: 2rem;
  }
  
  .about-stats {
    gap: 1rem;
  }
  
  .stat-item {
    min-width: 120px;
  }
}
