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

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

.page-register__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #1A202C;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

.page-register__hero-section .page-register__container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-register__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-register__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-register__intro-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-register__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-register__btn-primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-register__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-register__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-register__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: right;
}

.page-register__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Benefits Section */
.page-register__benefits-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-register__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-register__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  min-height: 250px;
}

.page-register__benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-register__benefit-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-register__benefit-title {
  font-size: 24px;
  font-weight: bold;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-register__benefit-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

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

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

.page-register__step-item {
  text-align: center;
  color: #333333;
}

.page-register__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #FFD700;
  color: #1A202C;
  font-size: 32px;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register__step-title {
  font-size: 26px;
  font-weight: bold;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-register__step-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-register__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
}

.page-register__important-note {
  background-color: #fffbe6;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
  color: #333333;
}

.page-register__note-title {
  font-size: 22px;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-register__important-note ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.page-register__important-note li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555555;
}

/* Promotions Section */
.page-register__promotions-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  color: #ffffff;
}

.page-register__promotions-section .page-register__section-title {
  color: #FFD700;
}

.page-register__promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.page-register__promotion-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  color: #f0f0f0;
}

.page-register__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
}

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

.page-register__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-register__security-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-register__security-text {
  flex: 1;
  min-width: 300px;
  color: #333333;
}

.page-register__security-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555555;
}

/* Contact Section */
.page-register__contact-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-register__contact-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__main-title {
    font-size: 42px;
  }
  .page-register__section-title {
    font-size: 32px;
  }
  .page-register__hero-section .page-register__container,
  .page-register__security-content {
    flex-direction: column;
    text-align: center;
  }
  .page-register__hero-content,
  .page-register__hero-image-wrapper,
  .page-register__security-image,
  .page-register__security-text {
    flex: none;
    max-width: 100%;
    text-align: center;
  }
  .page-register__security-image {
    order: -1;
  }
  .page-register__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-register {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-register__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-register__main-title {
    font-size: 36px;
  }
  .page-register__intro-description,
  .page-register__promotion-description,
  .page-register__contact-description {
    font-size: 16px;
  }
  .page-register__hero-section,
  .page-register__benefits-section,
  .page-register__steps-section,
  .page-register__promotions-section,
  .page-register__security-section,
  .page-register__contact-section {
    padding: 60px 0;
  }
  .page-register__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-register__step-title {
    font-size: 22px;
  }
  .page-register__important-note {
    padding: 20px;
  }
  .page-register__note-title {
    font-size: 20px;
  }
  
  /* Mobile image responsiveness */
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-register__container,
  .page-register__hero-section .page-register__container,
  .page-register__benefits-section .page-register__container,
  .page-register__steps-section .page-register__container,
  .page-register__promotions-section .page-register__container,
  .page-register__security-section .page-register__container,
  .page-register__contact-section .page-register__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-register__cta-button,
  .page-register__btn-primary,
  .page-register__btn-secondary,
  .page-register a[class*="button"],
  .page-register a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__security-text .page-register__btn-secondary {
    margin-left: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-register__main-title {
    font-size: 30px;
  }
  .page-register__section-title {
    font-size: 24px;
  }
  .page-register__benefit-title {
    font-size: 20px;
  }
  .page-register__step-title {
    font-size: 18px;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}