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

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

.page-register__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-register__text-block {
  font-size: 17px;
  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: 10px; /* Small top padding, body handles header offset */
  background-color: #f8f8f8;
}

.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__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Ensure high contrast */
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__hero-description {
  font-size: 19px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-register__cta-button:hover {
  background: #d66a06;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button--small {
  font-size: 16px;
  padding: 12px 30px;
}

/* Introduction Section */
.page-register__introduction-section .page-register__section-title {
  color: #26A9E0;
}

/* Benefits Section */
.page-register__benefits-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-register__benefits-section .page-register__card-title {
  color: #ffffff;
}

.page-register__benefits-section .page-register__card-text {
  color: #f0f0f0;
}

.page-register__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.page-register__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-register__card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-register__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-register__card-text {
  font-size: 16px;
  line-height: 1.7;
  flex-grow: 1;
}

/* Guide Section */
.page-register__guide-section {
  background-color: #ffffff;
  color: #333333;
}

.page-register__guide-section .page-register__section-title {
  color: #000000;
}

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

.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;
}

.page-register__step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-register__step-title {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-register__step-content p {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-register__list {
  list-style: disc inside;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-register__list li {
  margin-bottom: 8px;
  font-size: 17px;
  color: #333333;
}

.page-register__list strong {
  color: #000000;
}

/* Security Section */
.page-register__security-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-register__security-section .page-register__section-title {
  color: #000000;
}

.page-register__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-register__content-block {
  flex: 1;
}

.page-register__content-block p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: left;
}

.page-register__content-image {
  flex: 1;
  min-width: 300px;
}

.page-register__content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Promotions Section */
.page-register__promotions-section {
  background-color: #ffffff;
}