: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;
  --background-light: #ffffff;
  --border-light: #e0e0e0;
}

.page-resources-789pp-beginner-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-resources-789pp-beginner-guide__hero-section {
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, #339966 100%);
  color: var(--text-light);
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-resources-789pp-beginner-guide__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-789pp-beginner-guide__main-title {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-resources-789pp-beginner-guide__intro-text {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-789pp-beginner-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-789pp-beginner-guide__btn-register {
  background-color: var(--register-btn-color);
  color: var(--register-login-font-color);
}

.page-resources-789pp-beginner-guide__btn-register:hover {
  background-color: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-789pp-beginner-guide__btn-login {
  background-color: var(--login-btn-color);
  color: var(--register-login-font-color);
  margin-left: 20px;
}

.page-resources-789pp-beginner-guide__btn-login:hover {
  background-color: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-789pp-beginner-guide__btn-explore,
.page-resources-789pp-beginner-guide__btn-download,
.page-resources-789pp-beginner-guide__btn-promotions {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-789pp-beginner-guide__btn-explore:hover,
.page-resources-789pp-beginner-guide__btn-download:hover,
.page-resources-789pp-beginner-guide__btn-promotions:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-789pp-beginner-guide__content-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-resources-789pp-beginner-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-789pp-beginner-guide__section-title {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-789pp-beginner-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-789pp-beginner-guide__subtitle {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-789pp-beginner-guide__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-resources-789pp-beginner-guide__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-resources-789pp-beginner-guide__text-block a:hover {
  color: #005a2e;
}

.page-resources-789pp-beginner-guide__list,
.page-resources-789pp-beginner-guide__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-resources-789pp-beginner-guide__ordered-list {
  list-style-type: decimal;
}

.page-resources-789pp-beginner-guide__list li,
.page-resources-789pp-beginner-guide__ordered-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-resources-789pp-beginner-guide__step-by-step {
  margin-top: 30px;
}

.page-resources-789pp-beginner-guide__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-789pp-beginner-guide__step-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}