/* About page styling */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero section */
.about_hero {
  text-align: center;
  margin-bottom: 3rem;
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about_header {
  font-size: 3rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-family: Arial, sans-serif;
}

.about_subtitle {
  font-size: 1.3rem;
  color: #7f8c8d;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Story section */
.about_story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.story_card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.story_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.story_icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.story_card h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.story_card p {
  color: #34495e;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Credentials section */
.credentials_section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.credentials_section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  font-weight: bold;
}

.credentials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.credential_item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.credential_item:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.credential_icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.credential_item h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.credential_item p {
  color: #34495e;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Specialties section */
.specialties_section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.specialties_section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  font-weight: bold;
}

.specialties_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.specialty_item {
  padding: 2rem;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.specialty_item:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.specialty_item h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: bold;
}

.specialty_item p {
  color: #34495e;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Community section */
.community_section {
  margin-bottom: 2rem;
}

.community_card {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.community_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.community_icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.community_card h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.community_card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.community_card p:last-child {
  margin-bottom: 0;
}

.community_card strong {
  color: #ecf0f1;
}

/* Responsive design */
@media (max-width: 900px) {
  .about_story {
    grid-template-columns: 1fr;
  }
  
  .credentials_grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .about_container {
    padding: 1rem;
  }
  
  .about_hero {
    padding: 2rem 1.5rem;
  }
  
  .about_header {
    font-size: 2.5rem;
  }
  
  .about_subtitle {
    font-size: 1.1rem;
  }
  
  .story_card,
  .credentials_section,
  .specialties_section,
  .community_card {
    padding: 2rem;
  }
  
  .credentials_section h2,
  .specialties_section h2 {
    font-size: 2rem;
  }
  
  .community_card h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .about_header {
    font-size: 2rem;
  }
  
  .about_subtitle {
    font-size: 1rem;
  }
  
  .story_card,
  .credentials_section,
  .specialties_section,
  .community_card {
    padding: 1.5rem;
  }
  
  .story_icon,
  .credential_icon,
  .community_icon {
    font-size: 2.5rem;
  }
  
  .credentials_grid {
    grid-template-columns: 1fr;
  }
  
  .specialty_item:hover {
    transform: none; /* Remove slide effect on mobile */
  }
}

