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

/* 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); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #017439, #28a745); /* Gradient from primary to a slightly lighter green */
  color: #ffffff;
  overflow: hidden; /* Prevent content overflow */
}

.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;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-register__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__intro-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-register__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-register__btn-register {
  background: #C30808; /* Custom color for Register button */
  color: #FFFF00; /* Custom font color for Register button */
  border: 2px solid #C30808;
  box-shadow: 0 4px 15px rgba(195, 8, 8, 0.4);
}

.page-register__btn-register:hover {
  background: #e02020;
  border-color: #e02020;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(195, 8, 8, 0.6);
}

.page-register__btn-login {
  background: #C30808; /* Custom color for Login button */
  color: #FFFF00; /* Custom font color for Login button */
  border: 2px solid #C30808;
  box-shadow: 0 4px 15px rgba(195, 8, 8, 0.4);
}

.page-register__btn-login:hover {
  background: #e02020;
  border-color: #e02020;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(195, 8, 8, 0.6);
}

.page-register__btn-download {
  background: #017439; /* Primary color for download button */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-register__btn-download:hover {
  background: #005f2e;
  border-color: #005f2e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-register__section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: #017439; /* Primary color for titles */
}

.page-register__section-title--light {
  color: #ffffff;
}

.page-register__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-register__section-description--light {
  color: #f0f0f0;
}

.page-register__light-bg {
  background: #FFFFFF; /* Custom background color for the page */
}

.page-register__dark-bg {
  background: #017439; /* Primary color as dark background */
  color: #ffffff;
}

/* Steps Section */
.page-register__steps-section {
  padding: 80px 0;
}

.page-register__step-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.page-register__step-item:last-child {
  margin-bottom: 0;
}

.page-register__step-item--reverse {
  flex-direction: row-reverse;
}

.page-register__step-content {
  flex: 1;
}

.page-register__step-image {
  flex: 1;
  min-width: 300px; /* Ensure images don't get too small */
}