/* About Page Specific Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 70px;
}

.page-header h1 {
  color: #030712;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
      color: black;
}

.about-content-section {
  padding: 5rem 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.intro-text h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.team-section {
  background: var(--light-bg);
  padding: 5rem 0;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.team-member.reverse {
  grid-template-columns: 1fr 300px;
}

.team-member.reverse .member-image {
  order: 2;
}

.team-member.reverse .member-info {
  order: 1;
}

.member-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.member-info h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.member-info p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.awards-section {
  padding: 5rem 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.award-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid #d4af37;
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.award-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.award-item p {
  color: var(--text-light);
}

.process-section {
  background: var(--light-bg);
  padding: 5rem 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.step-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-content p {
  line-height: 1.7;
}

.service-areas-section {
  padding: 5rem 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.area-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.area-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.area-card h3 {
  padding: 1.5rem;
  margin: 0;
  text-align: center;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member,
  .team-member.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .team-member.reverse .member-image,
  .team-member.reverse .member-info {
    order: initial;
  }

  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    padding: 2rem 1.5rem;
  }

  .award-item {
    padding: 2rem 1.5rem;
  }
}
