.page-about {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px);
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #1A202C; /* Dark background for hero */
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-about__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-about__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 60px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-about__mission-vision-section, .page-about__commitment-section, .page-about__advantage-section, .page-about__future-section {
  padding: 60px 0;
}

.page-about__mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-about__mission-card, .page-about__vision-card, .page-about__advantage-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-about__mission-card:hover, .page-about__vision-card:hover, .page-about__advantage-card:hover {
  transform: translateY(-5px);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-about__card-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-about__history-content {
  text-align: center;
  margin-top: 40px;
}

.page-about__history-content .page-about__card-title {
  margin-bottom: 25px;
}

.page-about__history-content .page-about__card-text {
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-about__image-fullwidth {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-about__commitment-item {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

.page-about__item-text {
  font-size: 1.05em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-about__read-more-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__read-more-button:hover {
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-about__explore-button, .page-about__login-button, .page-about__support-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__explore-button:hover, .page-about__login-button:hover, .page-about__support-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-about__future-content {
  text-align: center;
}

.page-about__future-content .page-about__content-text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-about__cta-bottom-section {
  background-color: #1A202C;
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-about__cta-bottom-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__cta-bottom-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-bottom-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-about__cta-bottom-button:hover {
  background-color: #e6c200;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2.5em;
  }
  .page-about__card-title {
    font-size: 1.6em;
  }
  .page-about__item-title {
    font-size: 1.4em;
  }
  .page-about__cta-bottom-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 40px;
    padding-top: 40px;
  }
  .page-about__mission-vision-section, .page-about__commitment-section, .page-about__advantage-section, .page-about__future-section {
    padding: 40px 0;
  }
  .page-about__mission-vision-grid, .page-about__commitment-grid, .page-about__advantage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__card-title {
    font-size: 1.4em;
  }
  .page-about__card-text, .page-about__item-text, .page-about__future-content .page-about__content-text {
    font-size: 1em;
  }
  .page-about__image-fullwidth {
    max-width: 100%;
    height: auto;
  }
  .page-about__cta-bottom-title {
    font-size: 2em;
  }
  .page-about__cta-bottom-description {
    font-size: 1em;
  }
  .page-about__cta-bottom-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 0.95em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.2em;
  }
  .page-about__item-title {
    font-size: 1.2em;
  }
  .page-about__cta-bottom-title {
    font-size: 1.8em;
  }
}