.page-about {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A1931; /* Main brand color for hero background */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
}

.page-about__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  padding: 20px;
}

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

.page-about__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-about__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-about__button--primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-about__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-about__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

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

.page-about__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about__story-section {
  background-color: #1a2b45;
  padding: 80px 0;
}

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

.page-about__story-content,
.page-about__story-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-about__paragraph {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__link-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-about__link-button:hover {
  background-color: #e6c200;
}

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

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

.page-about__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

.page-about__values-section {
  background-color: #1a2b45;
  padding: 80px 0;
}

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

.page-about__value-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__value-icon {
  width: 200px; /* Min size enforced */
  height: 200px; /* Min size enforced */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-about__why-choose-us-section {
  background-color: #0A1931;
  padding: 80px 0;
}

.page-about__why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-about__why-choose-us-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__advantage-image {
  width: 100%;
  max-width: 400px; /* Ensure images fit within cards */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-about__responsible-gaming-section {
  background-color: #1a2b45;
  padding: 80px 0;
  text-align: center;
}

.page-about__responsible-gaming-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-about__cta-section--bottom {
  padding-bottom: 80px;
}

.page-about__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__hero-image-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 80%;
    max-width: 300px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-about__story-grid {
    flex-direction: column;
  }
  .page-about__story-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
  .page-about__mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .page-about__values-grid,
  .page-about__why-choose-us-grid {
    grid-template-columns: 1fr;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__paragraph {
    font-size: 1em;
  }
  /* Mobile content area images must not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Maintain minimum size even on mobile */
    min-height: 200px; /* Maintain minimum size even on mobile */
  }
  /* Ensure content area images (selected by .page-about rules) are not smaller than 200px */
  .page-about__value-icon,
  .page-about__advantage-image {
    width: 200px;
    height: 200px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__button {
    font-size: 1em;
    padding: 12px 20px;
  }
}