/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #2D3E50; /* Main color for text */
  background-color: #f8f9fa;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #2D3E50 0%, #4a647d 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #F39C12; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-about__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.page-about__section {
  padding: 60px 0;
}

.page-about__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-about__section-title {
  font-size: 2.2em;
  color: #2D3E50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-about__content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-about__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__card-title {
  font-size: 1.6em;
  color: #F39C12;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1.05em;
  color: #555;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

@media (min-width: 600px) {
  .page-about__values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .page-about__values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about__value-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-about__value-title {
  font-size: 1.4em;
  color: #2D3E50;
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 0.95em;
  color: #666;
}

.page-about__why-choose-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-about__why-choose-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333;
}

.page-about__why-choose-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-about__why-choose-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23F39C12"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #2D3E50;
}

.page-about__why-choose-content ul li strong {
  color: #F39C12;
}

.page-about__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  margin-top: 20px;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

.page-about__btn--primary {
  background-color: #F39C12;
  color: #ffffff;
  border: 2px solid #F39C12;
}

.page-about__btn--primary:hover {
  background-color: #e08e0b;
  border-color: #e08e0b;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(243, 156, 18, 0.4);
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #2D3E50;
  border: 2px solid #2D3E50;
}

.page-about__btn--secondary:hover {
  background-color: #2D3E50;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(45, 62, 80, 0.4);
}

.page-about__team-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-about__team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-about__team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-about__team-member {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

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

.page-about__member-name {
  font-size: 1.5em;
  color: #2D3E50;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 1.0em;
  color: #F39C12;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-about__member-bio {
  font-size: 0.95em;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}