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

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-register__section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.page-register__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-register__dark-bg {
  background-color: #017439; /* Primary brand color */
  color: #FFFFFF;
}

.page-register__section-title {
  font-size: 36px;
  color: inherit;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-register__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-register__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);
  background: linear-gradient(135deg, #017439, #005a2e); /* Darker gradient for hero */
  color: #FFFFFF;
}

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

.page-register__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-register__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-register__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-register__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Custom color for register button */
  color: #FFFF00; /* Custom font color for register button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__cta-button:hover {
  background: #a30606; /* Slightly darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Guide Section */
.page-register__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-register__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  color: #FFFFFF;
}

.page-register__step-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #FFFF00; /* Highlight step titles */
}

.page-register__step-description {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-register__step-item img {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-register__list {
  list-style-type: disc;
  text-align: left;
  margin: 20px auto;
  padding-left: 20px;
  max-width: 700px;
  font-size: 17px;
}