/* style/resources-q88-download-guide.css */
.page-resources-q88-download-guide {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-resources-q88-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-q88-download-guide__hero-section {
  background-color: #017439;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
}

.page-resources-q88-download-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-resources-q88-download-guide__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-q88-download-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-q88-download-guide__btn-primary,
.page-resources-q88-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-q88-download-guide__btn-primary {
  background-color: #017439; /* Changed to primary brand color to ensure contrast with yellow text */
  color: #FFFF00; /* Custom font color for register/download */
  border: 2px solid #017439;
}

.page-resources-q88-download-guide__btn-primary:hover {
  background-color: #005c2e; /* Darker green on hover */
  color: #FFFF00;
}

.page-resources-q88-download-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}