/* Additional styles for About Us page */

.page-header {
  background: var(--gradient-primary);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=600&width=1920") center / cover;
  opacity: 0.2;
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.about-image img {
  transition: transform 0.3s ease;
}

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

.stat-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.foundation-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.foundation-card:hover {
  transform: translateY(-10px);
  /* Updated hover border color to purple */
  border-color: var(--primary-purple);
  box-shadow: 0 20px 40px rgba(156, 39, 176, 0.2);
}

.commitment-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.commitment-card:hover {
  transform: translateY(-8px);
  /* Updated hover border color to pink accent */
  border-color: var(--accent-pink);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.commitment-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header {
    min-height: 50vh;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .foundation-card,
  .commitment-card {
    margin-bottom: 2rem;
  }
}
