/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-about__hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A2463, #3A5F9A); /* Dark blue to slightly lighter blue */
  color: #fff;
  padding: 20px;
}

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

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

.page-about__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Auxiliary color for emphasis, good contrast on dark blue */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__subtitle {
  font-size: 1.5em;
  color: #e0e0e0; /* Light gray for readability on dark background */
}

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

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__heading {
  font-size: 2.5em;
  color: #0A2463; /* Main color for headings, good contrast on light background */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary color for accent */
  margin: 10px auto 0;
}

.page-about__introduction p,
.page-about__mission-vision p,
.page-about__values li,
.page-about__team p,
.page-about__responsible-gambling p,
.page-about__cta p {
  font-size: 1.1em;
  color: #555; /* Dark gray for body text, good contrast on light background */
  margin-bottom: 15px;
  text-align: justify;
}

.page-about__introduction p:last-child,
.page-about__mission-vision p:last-child,
.page-about__team p:last-child,
.page-about__responsible-gambling p:last-child,
.page-about__cta p:last-child {
  margin-bottom: 0;
}

.page-about__mv-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.page-about__mv-item {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-about__mv-item h3 {
  font-size: 1.8em;
  color: #0A2463; /* Main color for subheadings */
  margin-bottom: 15px;
  text-align: center;
}

.page-about__value-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-about__value-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #FFD700; /* Auxiliary color for accent */
  font-weight: bold;
  color: #0A2463; /* Main color for value list items */
}

.page-about__value-list li strong {
  color: #0A2463;
}

.page-about__image {
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-about__image--center {
  max-width: 70%;
}

.page-about__image--full-width {
  max-width: 90%;
}

.page-about__image--small {
  max-width: 50%;
}

.page-about__cta {
  background: #0A2463; /* Main color for CTA background */
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-about__cta-content {
  position: relative;
  z-index: 2;
}

.page-about__cta .page-about__heading {
  color: #FFD700; /* Auxiliary color for CTA heading, good contrast on dark blue */
}

.page-about__cta .page-about__heading::after {
  background-color: #fff; /* White accent on dark background */
}

.page-about__cta p {
  color: #e0e0e0; /* Light gray for readability on dark background */
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-about__button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for button */
  color: #0A2463; /* Main color for button text, good contrast on gold */
  padding: 15px 35px;
  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 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-about__image--cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about__hero {
    height: 300px;
  }

  .page-about__title {
    font-size: 2.5em;
  }

  .page-about__subtitle {
    font-size: 1.2em;
  }

  .page-about__heading {
    font-size: 2em;
  }

  .page-about__mv-grid {
    flex-direction: column;
  }

  .page-about__value-list {
    grid-template-columns: 1fr;
  }

  .page-about__image--center,
  .page-about__image--full-width,
  .page-about__image--small {
    max-width: 100%;
  }

  .page-about__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    height: 250px;
  }

  .page-about__title {
    font-size: 2em;
  }

  .page-about__subtitle {
    font-size: 1em;
  }

  .page-about__heading {
    font-size: 1.8em;
  }

  .page-about__introduction p,
  .page-about__mission-vision p,
  .page-about__values li,
  .page-about__team p,
  .page-about__responsible-gambling p,
  .page-about__cta p {
    font-size: 1em;
  }

  .page-about__mv-item h3 {
    font-size: 1.5em;
  }

  .page-about__section {
    padding: 40px 0;
  }
}