/* Custom styles for About Us hero section */
#about-hero {
  background: url('../assets/images/gpac-about-us-hero-picture.jpeg') no-repeat;
  background-size: cover;
  background-position: center 25%; /* Adjusted to prevent cutting off heads */
  position: relative;
}

/* Add any additional custom styles for the About page here */
.about-section {
  padding: 50px 0;
}

.about-intro {
  margin-bottom: 40px;
}

.about-intro h2 {
  color: var(--primary-brand-crimson);
  font-size: 2.5em;
  margin-bottom: 25px;
  text-align: center;
}

.about-intro p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-two-column {
  display: flex;
  gap: 40px;
  margin: 50px 0;
}

.about-column {
  flex: 1;
}

.about-column h3 {
  color: var(--primary-brand-crimson);
  font-size: 1.8em;
  margin-bottom: 20px;
}

.about-column p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-milestone {
  background-color: var(--secondary-brand-cream);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-milestone h3 {
  color: var(--primary-brand-crimson);
  margin-bottom: 15px;
}

.about-image-container {
  text-align: center;
  margin: 30px 0;
}

.about-image {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-quote {
  font-style: italic;
  font-size: 1.2em;
  color: var(--supporting-dark-crimson);
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  border-left: 4px solid var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-two-column {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-intro h2 {
    font-size: 2em;
  }
  
  .about-column h3 {
    font-size: 1.5em;
  }
}
