/* style/resources-sunwin-beginner-guide.css */

/* Base styles for the page */
.page-resources-sunwin-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Body background from shared.css */
}

.page-resources-sunwin-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-sunwin-beginner-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-sunwin-beginner-guide__dark-bg {
  background-color: #0a0a0a; /* Ensure consistency with body background */
  color: #ffffff;
}

.page-resources-sunwin-beginner-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-resources-sunwin-beginner-guide__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-align: left;
}

.page-resources-sunwin-beginner-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-sunwin-beginner-guide__text-link {
  color: #FFFF00;
  text-decoration: underline;
}

/* Hero Section */
.page-resources-sunwin-beginner-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
  background-color: #017439; /* Use brand color for hero background */
  color: #ffffff;
}

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

.page-resources-sunwin-beginner-guide__hero-section .page-resources-sunwin-beginner-guide__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-resources-sunwin-beginner-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  font-weight: bold;
}

.page-resources-sunwin-beginner-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-resources-sunwin-beginner-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-sunwin-beginner-guide__btn-primary,
.page-resources-sunwin-beginner-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, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-sunwin-beginner-guide__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-sunwin-beginner-guide__btn-primary:hover {
  background-color: #02944b;
  border-color: #02944b;
}

.page-resources-sunwin-beginner-guide__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #ffffff;
}

.page-resources-sunwin-beginner-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}