.page-resources-online-fishing-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-resources-online-fishing-tips__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-online-fishing-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-online-fishing-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-online-fishing-tips__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
}

.page-resources-online-fishing-tips__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00; /* Register and Login font color for emphasis */
}

.page-resources-online-fishing-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-online-fishing-tips__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-online-fishing-tips__btn-primary,
.page-resources-online-fishing-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%; /* Ensure buttons adapt to width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-online-fishing-tips__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-online-fishing-tips__btn-primary:hover {
  background-color: #e02020;
  transform: translateY(-3px);
}

.page-resources-online-fishing-tips__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-online-fishing-tips__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-resources-online-fishing-tips__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-online-fishing-tips__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-online-fishing-tips__heading {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #017439;
}

.page-resources-online-fishing-tips__dark-bg .page-resources-online-fishing-tips__heading {
  color: #FFFFFF;
}

.page-resources-online-fishing-tips__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

.page-resources-online-fishing-tips__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-resources-online-fishing-tips__text-block {
  flex: 1;
}

.page-resources-online-fishing-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-online-fishing-tips__dark-bg .page-resources-online-fishing-tips__paragraph {
  color: #f0f0f0;
}

.page-resources-online-fishing-tips__keyword {
  font-weight: bold;
  color: #017439;
}

.page-resources-online-fishing-tips__dark-bg .page-resources-online-fishing-tips__keyword {
  color: #FFFF00;
}