/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* About Section */
.about-full {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.about-full h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-full p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-full img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-full img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
/* Team Section */
.team {
  padding: 80px 0;
  background-color: var(--white);
}

.team h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--text-dark);
  text-align: center;
}

.team-grid {
  display: grid;
  gap: 60px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  box-shadow: var(--shadow-hover);
}

.team-member.reverse {
  flex-direction: row-reverse;
}

.member-photo {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  flex-grow: 1;
}

.member-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.member-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 20px;
  display: block;
}

.member-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .about-full h2,
  .team h2 {
    font-size: 2rem;
  }

  .team-member,
  .team-member.reverse {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }

  .member-photo {
    width: 180px;
    height: 180px;
  }

  .member-info {
    text-align: center;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 30px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: var(--shadow-hover);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.close {
  color: var(--text-light);
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.close:hover,
.close:focus {
  color: var(--primary-color);
  text-decoration: none;
}