.page-about {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-about__hero-section {
  background-color: #0A246A;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #F3C70E;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #F3C70E;
  color: #0A246A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-about__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

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

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

.page-about__mission-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-about__card-icon {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-about__card-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-about__card-text {
  color: #666666;
  font-size: 1em;
}

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

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

.page-about__feature-item {
  background-color: #fefefe;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-about__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 15px;
}

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

.page-about__responsible-gaming-section {
  padding: 80px 0;
  background-color: #0A246A;
  color: #ffffff;
}

.page-about__responsible-gaming-section .page-about__section-title {
  color: #F3C70E;
}

.page-about__responsible-gaming-section .page-about__section-intro {
  color: #e0e0e0;
}

.page-about__responsible-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-about__responsible-item {
  background-color: rgba(243, 199, 14, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-about__responsible-item::before {
  content: '✔';
  color: #F3C70E;
  font-weight: bold;
  font-size: 1.2em;
}

.page-about__responsible-button {
  display: inline-block;
  background-color: #F3C70E;
  color: #0A246A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__responsible-button:hover {
  background-color: #e0b80d;
  transform: translateY(-3px);
}

.page-about__technology-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-about__tech-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-about__tech-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-about__tech-text {
  color: #666666;
  font-size: 1em;
}

.page-about__call-to-action-section {
  background-color: #0A246A;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-about__cta-content {
  max-width: 900px;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #F3C70E;
  margin-bottom: 25px;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #F3C70E;
  color: #0A246A;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 15px 20px 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #e0b80d;
  transform: translateY(-3px);
}

.page-about__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #F3C70E;
  color: #F3C70E;
}

.page-about__cta-button--secondary:hover {
  background-color: rgba(243, 199, 14, 0.1);
  color: #F3C70E;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-about__hero-section {
    padding: 60px 15px;
    flex-direction: column;
    text-align: center;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-about__mission-grid, .page-about__features-grid, .page-about__tech-highlights {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
    margin: 0 10px 15px 10px;
  }
  /* Ensure content images do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__card-icon, .page-about__feature-image {
    width: 100%;
    height: auto; /* Allow height to adjust */
    min-height: 200px; /* Enforce minimum height */
    object-fit: cover;
  }
  .page-about__responsible-list {
    margin: 30px auto;
  }
  .page-about__responsible-item {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto 15px auto;
  }
}