/* About Us Page */
.about-page {
  padding: 120px 30px 40px; /* extra top padding for fixed navbar */
  max-width: 1200px;
  margin: auto;
}

/* Hero Section */
.about-hero { 
  text-align: center; 
  margin-bottom: 40px; 
}

.about-hero img {
  width: 1200px;
  height: 500px;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-hero h1 { 
  font-size: 32px; 
  color: #0c4c36; 
  margin-bottom: 10px; 
}

.about-hero .tagline {
  font-size: 20px;
  color: #297a43;
  font-style: italic;
  margin-top: 10px;
}

/* About Content Section */
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 32px;
  color: #0c4c36;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

.about-images {
  flex: 1 1 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-images img:hover {
  transform: scale(1.05);
}

/* Headings inside content */
.about-content h3 {
  color: #0c4c36;
  margin-top: 30px;
  font-size: 22px;
}

.about-content p {
  margin-top: 10px;
  line-height: 1.6;
  color: #333;
}

.about-content ul {
  margin-top: 10px;
  padding-left: 20px;
  color: #333;
}

.about-content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-hero {
    max-height: 250px;
  }

  .about-hero h1 {
    font-size: 24px;
    padding: 10px 15px;
  }
}
