/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for readability */
  background-color: #f8f8f8;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about__hero-section {
  background: linear-gradient(135deg, #00A86B, #28a745); /* Main color gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #333333; /* Dark text for contrast */
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__btn--secondary {
  background-color: #00A86B; /* Main color */
  color: #ffffff;
  border: 2px solid #00A86B;
}

.page-about__btn--secondary:hover {
  background-color: #00764b;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__mission-vision-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-about__mission-vision-section .page-about__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.page-about__card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #00A86B;
}

.page-about__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-about__card-title {
  font-size: 2em;
  color: #00A86B;
  margin-bottom: 20px;
}

.page-about__card-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-about__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
}

.page-about__values-section {
  padding: 80px 0;
  background-color: #f0f8f0; /* Light green tint */
  text-align: center;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #00764b; /* Darker main color for contrast */
  margin-bottom: 50px;
  font-weight: bold;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-about__value-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: 4px solid #FFD700;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
}

.page-about__value-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__value-title {
  font-size: 1.8em;
  color: #00A86B;
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 1em;
  color: #666666;
}

.page-about__cta-section {
  background-color: #00A86B; /* Main color */
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-about__team-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-about__team-intro {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-about__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__team-member {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about__team-member:hover {
  transform: translateY(-5px);
}

.page-about__member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700;
}

.page-about__member-name {
  font-size: 1.8em;
  color: #00764b;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 1em;
  color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__card {
    max-width: 100%;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__mission-vision-section .page-about__container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__value-title {
    font-size: 1.4em;
  }
  .page-about__member-name {
    font-size: 1.5em;
  }
}