.page-game-introduction-fish-types-values {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-game-introduction-fish-types-values__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-introduction-fish-types-values__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-introduction-fish-types-values__hero-content {
  max-width: 800px;
  z-index: 10;
  margin-bottom: 40px;
}

.page-game-introduction-fish-types-values__hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-introduction-fish-types-values__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e9ecef;
}

.page-game-introduction-fish-types-values__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: auto;
    z-index: 5;
}

.page-game-introduction-fish-types-values__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.8;
}

.page-game-introduction-fish-types-values__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  font-size: 1em;
  cursor: pointer;
}

.page-game-introduction-fish-types-values__btn--primary {
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast on yellow */
  border: 2px solid #ffc107;
}

.page-game-introduction-fish-types-values__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003e91;
}

.page-game-introduction-fish-types-values__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-game-introduction-fish-types-values__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.page-game-introduction-fish-types-values__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-game-introduction-fish-types-values__section--alt-bg {
  background-color: #f1f7fe;
}

.page-game-introduction-fish-types-values__section h2 {
  font-size: 2.5em;
  color: #0056b3; /* Darker blue for headings */
  margin-bottom: 30px;
  text-align: center;
}

.page-game-introduction-fish-types-values__section h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-game-introduction-fish-types-values__section h4 {
  font-size: 1.4em;
  color: #0056b3;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-game-introduction-fish-types-values__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #495057;
}

.page-game-introduction-fish-types-values__section ul,
.page-game-introduction-fish-types-values__section ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #495057;
}

.page-game-introduction-fish-types-values__section li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-introduction-fish-types-values__fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-introduction-fish-types-values__fish-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-game-introduction-fish-types-values__fish-item:hover {
  transform: translateY(-5px);
}

.page-game-introduction-fish-types-values__fish-item img {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-game-introduction-fish-types-values__fish-item h4 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-game-introduction-fish-types-values__fish-item ul {
  text-align: left;
  padding-left: 20px;
  list-style-type: disc;
}

.page-game-introduction-fish-types-values__fish-item li {
  font-size: 0.95em;
  color: #555;
}

.page-game-introduction-fish-types-values__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-game-introduction-fish-types-values__image-small-width {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-game-introduction-fish-types-values__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-game-introduction-fish-types-values__section--contact {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-game-introduction-fish-types-values__section--contact h2 {
  color: #fff;
  margin-bottom: 20px;
}

.page-game-introduction-fish-types-values__section--contact p {
  color: #e9ecef;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-introduction-fish-types-values__btn--outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-game-introduction-fish-types-values__btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.page-game-introduction-fish-types-values .highlight {
  color: #ffc107;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-introduction-fish-types-values__hero h1 {
    font-size: 2.5em;
  }

  .page-game-introduction-fish-types-values__hero p {
    font-size: 1em;
  }

  .page-game-introduction-fish-types-values__section h2 {
    font-size: 2em;
  }

  .page-game-introduction-fish-types-values__section h3 {
    font-size: 1.5em;
  }

  .page-game-introduction-fish-types-values__fish-grid {
    grid-template-columns: 1fr;
  }

  .page-game-introduction-fish-types-values__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-game-introduction-fish-types-values__hero {
    padding: 80px 0 50px;
  }

  .page-game-introduction-fish-types-values__hero h1 {
    font-size: 2em;
  }

  .page-game-introduction-fish-types-values__section {
    padding: 40px 0;
  }

  .page-game-introduction-fish-types-values__section h2 {
    font-size: 1.8em;
  }

  .page-game-introduction-fish-types-values__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}