/* About Page Specific Styles */

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.about-section {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-flag {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-flag:hover {
  transform: scale(1.02);
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.about-text li {
  margin-bottom: 8px;
}

.team-section {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.team-member {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  color: var(--navy-blue);
  margin-bottom: 8px;
  text-align: left;
}

.member-role {
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.member-bio {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .page-container {
    padding: 24px 16px;
  }
  
  .about-section,
  .team-section {
    padding: 24px 16px;
  }
  
  .about-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .team-member {
    min-width: 100%;
  }
}