.page-about {
  padding-top: 10px; /* Small top padding, main padding handled by body in shared.css */
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-about__section {
  padding: 40px 20px;
  margin-bottom: 20px;
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 40px;
  background-color: #0A0A0A;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF6D6;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-about__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-about__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-about__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E;
}

.page-about__sub-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-about__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__text-content {
  flex: 1;
}

.page-about__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__vision-mission .page-about__content-grid {
  flex-direction: row;
}

.page-about__why-choose-us .page-about__section-title {
  color: #F2C14E;
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-about__feature-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-about__features-image {
  margin-top: 30px;
}

.page-about__team-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.page-about__contact-cta {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-about__hero-image-wrapper {
    margin-bottom: 15px;
  }
  .page-about__hero-image {
    width: 100%;
    height: auto;
  }
  .page-about__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-about__description {
    font-size: 0.95rem;
  }
  .page-about__content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .page-about__text-content, .page-about__image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-about__image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about__image {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__vision-mission .page-about__image {
    max-width: 100%;
    height: auto;
  }
  .page-about__why-choose-us .page-about__image {
    max-width: 100%;
    height: auto;
  }
  .page-about__team .page-about__image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-about__section {
    padding: 30px 15px;
  }
  .page-about__section-title {
    font-size: 1.8rem;
  }
  .page-about__sub-title {
    font-size: 1.4rem;
  }
  .page-about__card-title {
    font-size: 1.3rem;
  }
  .page-about__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}