.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Body background is light */
}

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

.page-about__hero-section {
  position: relative;
  padding: 80px 0 40px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #f8f8f8;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #017439;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-about__hero-description {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-about__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.page-about__btn-register,
.page-about__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.05em;
  text-align: center;
  box-sizing: border-box;
}

.page-about__btn-register {
  background-color: #C30808; /* Custom color for Register */
  color: #ffffff; /* Overriding #FFFF00 for WCAG AA contrast */
  border: 2px solid #C30808;
}

.page-about__btn-register:hover {
  background-color: #a00606;
  border-color: #a00606;
}

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

.page-about__btn-secondary:hover {
  background-color: #e0f2e7;
  color: #017439;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-about__mission-vision,
.page-about__why-choose,
.page-about__team-values,
.page-about__milestones-history,
.page-about__responsible-gaming,
.page-about__faq-section,
.page-about__cta-section {
  padding: 60px 0;
}

.page-about__dark-section {
  background-color: #017439;
  color: #ffffff;
}

.page-about__dark-section .page-about__section-title,
.page-about__dark-section .page-about__section-description,
.page-about__dark-section .page-about__card-title,
.page-about__dark-section .page-about__card-text,
.page-about__dark-section .page-about__sub-title,
.page-about__dark-section .page-about__values-list li {
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-about__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #017439;
  font-weight: bold;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-about__dark-section .page-about__section-description {
  color: #e0e0e0;
}

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

.page-about__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-about__dark-section .page-about__card {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__card-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__dark-section .page-about__card-title {
  color: #ffffff;
}

.page-about__card-text {
  font-size: 1em;
  line-height: 1.7;
}

.page-about__content-image {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-about__feature-card {
  background-color: #f0fdf4;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-about__feature-card:hover {
  background-color: #e6faed;
}

.page-about__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__feature-text {
  font-size: 0.95em;
  color: #555555;
}

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

.page-about__text-block {
  flex: 1;
  min-width: 300px;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__dark-section .page-about__sub-title {
  color: #ffffff;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}