/* About Hero */
.about-hero {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 8rem 0 5rem;
  margin-top: 76px;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Mission Vision Cards */
.mission-vision {
  padding: 5rem 0;
}

.mission-vision-card {
  background: var(--secondary-color);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.mission-vision-card h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.mission-vision-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Core Values */
.core-values {
  padding: 5rem 0;
}

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

.value-item {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Approach Section */
.approach-section {
  padding: 5rem 0;
}

.approach-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.approach-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.approach-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  padding-right: 50px;
}

.approach-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Organization Structure */
.org-structure {
  padding: 5rem 0;
}

.org-chart {
  max-width: 1000px;
  margin: 0 auto;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.org-box {
  background: var(--secondary-color);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 200px;
  transition: all 0.3s ease;
  position: relative;
}

.org-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.org-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.org-box h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.org-box p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.board {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.board i,
.board h5 {
  color: var(--secondary-color);
}

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

  .mission-vision-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .approach-card {
    margin-bottom: 2rem;
  }

  .org-level {
    flex-direction: column;
    align-items: center;
  }

  .org-box {
    width: 100%;
    max-width: 300px;
  }
}

