/* About Page Styles */
.about-content {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 20px;
  position: relative;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ef6603, #d45a02);
  margin: 0 auto;
  border-radius: 2px;
}

.about-text .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2c1810;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-section {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
}

.section-icon {
  text-align: center;
  margin-bottom: 20px;
}

.section-icon i {
  font-size: 3rem;
  color: #ef6603;
  background: linear-gradient(135deg, #ef6603, #d45a02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c1810;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #ef6603, #d45a02);
  border-radius: 2px;
}

.stat-card {
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ef6603;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
}

.mission-vision-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  border-color: #ef6603;
}

.card-icon {
  margin-bottom: 25px;
}

.card-icon i {
  font-size: 3rem;
  color: #ef6603;
  background: linear-gradient(135deg, #ef6603, #d45a02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-vision-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c1810;
  margin-bottom: 20px;
}

.mission-vision-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-text .lead {
    font-size: 1.1rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .mission-vision-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .about-section {
    padding: 30px 20px;
  }
}
