/* About Page Specific Styles */

.about-page {
  color: var(--light-text);
  background: var(--dark-bg);
}

.about-page p, .about-page li, .about-page .member-bio {
  color: var(--light-text);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.about-page .section-content, .about-page .section-header {
  margin-bottom: 18px;
}
.about-page .container {
  padding: 24px 0;
}
.hero-about {
  padding: 40px 0 24px 0;
}
.our-mission, .authentication, .our-team, .sustainability {
  padding: 24px 0 12px 0;
}

/* Hero Section */
.hero-about {
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/about/hero-about.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-about h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-about p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reverse {
  direction: rtl;
}

.reverse .section-content {
  direction: ltr;
}

.section-content h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--accent-color);
}

.section-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
}

.section-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Authentication List */
.authentication-points {
  margin: 20px 0;
  padding-left: 20px;
}

.authentication-points li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--light-text);
}

/* Team Section */
.our-team {
  background-color: var(--card-bg);
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
}

.member-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--light-text);
}

.member-title {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.member-bio {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* Sustainability Section */
.sustainability {
  background-color: var(--deep-black);
  text-align: center;
}

.sustainability .container {
  grid-template-columns: 1fr;
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  
  .section-image {
    height: 400px;
    order: -1;
  }
  
  .reverse .section-image {
    order: -1;
  }
  
  .hero-about h1 {
    font-size: 2.5rem;
  }
  
  .hero-about p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-content h2 {
    font-size: 1.8rem;
  }
  
  .section-image {
    height: 300px;
  }
}