/* Page Header Styles */
.about-header {
  background-color: #003264;
  color: white;
  padding: 60px 0;
  margin-bottom: 0;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-title i {
  color: #F4C430;
  margin-right: 10px;
}

.title-underline {
  height: 3px;
  width: 80px;
  background-color: #ffd700;
  margin: 0 auto 20px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* About Section Styles */
.about-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #003264;
}

.section-underline {
  height: 3px;
  width: 60px;
  background-color: #ffd700;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

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

.about-image {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.about-image:hover {
  transform: scale(1.05);
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 70px 0;
  background-color: #FFFFFF;
}

.mission-card, .vision-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #4DA8DA;
}

.card-underline {
  height: 3px;
  width: 50px;
  background-color: #F4C430;
  margin-bottom: 20px;
}

.mission-icon, .vision-icon {
  width: 70px;
  height: 70px;
  background-color: #003264;
  color: #F4C430;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 50, 100, 0.2);
}

.mission-card h3, .vision-card h3 {
  font-size: 1.8rem;
  color: #374151;
  margin-bottom: 10px;
  font-weight: 700;
}

.mission-card p, .vision-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 25px;
}

.mission-points, .vision-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-points li, .vision-points li {
  padding: 8px 0;
  font-size: 1.1rem;
  color: #374151;
  display: flex;
  align-items: center;
}

.mission-points li i, .vision-points li i {
  color: #4DA8DA;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Our Approach Section */
.approach-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.approach-icon {
  width: 60px;
  height: 60px;
  background-color: #003264;
  color: #F4C430;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.approach-card h3 {
  font-size: 1.5rem;
  color: #374151;
  margin-bottom: 15px;
  font-weight: 600;
}

.approach-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4B5563;
}

/* Legacy Section */
.legacy-section {
  padding: 80px 0;
  background-color: #F9FAFB;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-header {
    padding: 50px 0;
  }
  
  .page-title {
    font-size: 2.4rem;
  }
  
  .about-content h2 {
    font-size: 2.2rem;
  }
  
  .mission-card, .vision-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .about-header {
    padding: 40px 0;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.2rem;
  }
  
  .about-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .section-underline {
    margin: 0 auto 25px;
  }
  
  .about-content p {
    text-align: center;
  }
  
  .about-image-container {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .about-header {
    padding: 30px 0;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .about-section {
    padding: 40px 0;
  }
  
  .mission-vision-section {
    padding: 40px 0;
  }
  
  .mission-card, .vision-card {
    padding: 20px;
  }
}