/* style/beginner-guide-special-fish-items.css */
.page-beginner-guide-special-fish-items {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-beginner-guide-special-fish-items__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-beginner-guide-special-fish-items__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-special-fish-items__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-beginner-guide-special-fish-items__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-beginner-guide-special-fish-items__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: 2px solid transparent;
}

.page-beginner-guide-special-fish-items__btn--primary {
  background-color: #ffc107;
  color: #007bff; /* Darker text for contrast */
  border-color: #ffc107;
}

.page-beginner-guide-special-fish-items__btn--primary:hover {
  background-color: #e0a800;
  color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-special-fish-items__content-section {
  padding: 60px 0;
}

.page-beginner-guide-special-fish-items__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-beginner-guide-special-fish-items__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
  color: #495057;
}

.page-beginner-guide-special-fish-items__text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page-beginner-guide-special-fish-items__text-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-beginner-guide-special-fish-items__highlight {
  color: #007bff;
  font-weight: 600;
}

.page-beginner-guide-special-fish-items__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-beginner-guide-special-fish-items__feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-special-fish-items__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-special-fish-items__feature-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-beginner-guide-special-fish-items__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-beginner-guide-special-fish-items__feature-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-beginner-guide-special-fish-items__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #495057;
  font-size: 1.1em;
}

.page-beginner-guide-special-fish-items__list li {
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
}

.page-beginner-guide-special-fish-items__list li::before {
  content: '▪';
  color: #ffc107;
  font-size: 1.2em;
  position: absolute;
  left: -5px;
  top: 0;
}

.page-beginner-guide-special-fish-items__call-to-action {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-beginner-guide-special-fish-items__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-beginner-guide-special-fish-items__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-special-fish-items__btn--outline {
  background-color: transparent;
  color: #007bff;
  border-color: #007bff;
}

.page-beginner-guide-special-fish-items__btn--outline:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-special-fish-items__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-special-fish-items__hero-description,
  .page-beginner-guide-special-fish-items__paragraph,
  .page-beginner-guide-special-fish-items__list {
    font-size: 1em;
  }

  .page-beginner-guide-special-fish-items__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-special-fish-items__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-special-fish-items__feature-item {
    padding: 20px;
  }

  .page-beginner-guide-special-fish-items__call-to-action {
    flex-direction: column;
    align-items: center;
  }

  .page-beginner-guide-special-fish-items__btn {
    width: 80%;
    max-width: 300px;
  }
}