.page-header {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.header-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-section {
  margin-bottom: 4rem;
  padding: 5rem 0;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #4a5568;
}

.about-text ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-paragraphs-section {
  padding: 4rem 0;
  background: white;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
  text-align: justify;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

.team-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
}

.team-section h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.team-card {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  z-index: 0;
  border-radius: 16px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  position: relative;
  z-index: 1;
}

.member-info h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.member-info p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.member-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: #007bff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.member-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.member-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.member-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .team-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-text p,
  .about-paragraph {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-section,
  .about-paragraphs-section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 4rem 1rem;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .team-section {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .member-image {
    width: 120px;
    height: 120px;
  }

  .member-info h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .about-section,
  .about-paragraphs-section {
    padding: 2rem 0;
  }

  .about-grid,
  .container {
    padding: 0 1.5rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-content {
    padding: 2rem 1rem;
  }

  .team-section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .team-card {
    padding: 1.5rem;
  }
}
