/* About Page Styles */
.about-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e8 100%);
}

.about-title {
  font-size: 3rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.about-hero-img {
  text-align: center;
}

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

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #009688;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Values Section */
.value-card {
  padding: 2rem 1rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #009688;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.value-card h4 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team-card {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  margin-bottom: 1.5rem;
}

.team-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #009688;
}

.team-card h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #009688;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Section */
.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta-section {
  background-color: #f8f9fa;
}

.cta-section h2 {
  color: #333;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .team-img img {
    width: 120px;
    height: 120px;
  }
}
