/* History Section */

.history-section {
  padding: 80px 20px;
  background-color: white;
}

.history-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--uci-blue);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.history-text h3 {
  font-size: 1.8rem;
  color: var(--uci-blue);
  margin-bottom: 20px;
}

.history-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.history-image {
  background-image: url("https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 400px;
}
/* Leadership Section */

.leadership-section {
  padding: 80px 20px;
  background-color: var(--light-blue);
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.leader-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.leader-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.leader-content {
  padding: 25px;
  text-align: center;
}

.leader-name {
  font-size: 1.5rem;
  color: var(--uci-blue);
  margin-bottom: 5px;
}

.leader-title {
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.leader-bio {
  color: #555;
  margin-bottom: 20px;
}
/* Facts Section */

.facts-section {
  padding: 80px 20px;
  background-color: white;
}

.facts-container {
  max-width: 1200px;
  margin: 0 auto;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.fact-card {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  transition: all 0.3s;
}

.fact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.fact-icon {
  font-size: 2.5rem;
  color: var(--uci-blue);
  margin-bottom: 20px;
}

.fact-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--uci-blue);
  margin-bottom: 10px;
}

.fact-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-gray);
}
/* Values Section */

.values-section {
  padding: 80px 20px;
  background-color: var(--light-blue);
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--uci-blue);
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.5rem;
  color: var(--uci-blue);
  margin-bottom: 15px;
}

.value-description {
  color: #555;
  line-height: 1.8;
}

/* Responsive Design */

@media (max-width: 900px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  .about-hero p {
    font-size: 1.2rem;
  }
  .history-content {
    grid-template-columns: 1fr;
  }
  .history-image {
    order: -1;
    height: 300px;
  }
}
