/* style/resources-beginner-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-btn-color: #C30808;
  --login-btn-color: #C30808;
  --register-login-font-color: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
}

.page-resources-beginner-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Body background is white, so default text is dark */
}

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

.page-resources-beginner-guide__section {
  padding: 60px 0;
}

.page-resources-beginner-guide__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-beginner-guide__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-beginner-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-beginner-guide__subsection-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-beginner-guide__text-block {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-resources-beginner-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  font-size: 17px;
}

.page-resources-beginner-guide__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
  font-size: 17px;
}

.page-resources-beginner-guide__list-item {
  margin-bottom: 8px;
}

.page-resources-beginner-guide__inline-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-beginner-guide__inline-link:hover {
  color: #005f2e;
}

/* HERO Section Styles */
.page-resources-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-resources-beginner-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-beginner-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-beginner-guide__hero-image img {
  width="1200" height="675";
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-beginner-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-beginner-guide__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-light); /* Dark background, light text */
}

.page-resources-beginner-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light); /* Dark background, light text */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-beginner-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-btn-color); /* Custom color for register/login */
  color: var(--register-login-font-color); /* Custom font color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-beginner-guide__cta-button:hover {
  background: #a80707; /* Darker shade of register-btn-color */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}