/* About Page Specific Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primaryGreen), var(--darkGreen));
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--HeaderFont);
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-header p {
  font-family: var(--BodyFont);
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About Content Section */
.about-content {
  padding: 100px 0;
  background: var(--white);
}

.about-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--HeaderFont);
  font-size: 2.5rem;
  color: var(--primaryGreen);
  margin-bottom: 30px;
}

.about-text p {
  font-family: var(--BodyFont);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--darkGray);
  margin-bottom: 25px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* About Photo */
.about-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 400px;
}

.about-image {
  width: 100%;
  height: auto;
}

/* Spanish Section */
.about-content-spanish {
  background: #f8f9fa;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-content .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image {
    margin-top: 20px;
  }

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

  .page-header p {
    font-size: 1.1rem;
  }
}
