.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-register__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFB81C; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

/* Buttons */
.page-register__btn-primary,
.page-register__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.page-register__btn-primary {
  background-color: #E44D26; /* Orange */
  color: #ffffff;
  border: 2px solid #E44D26;
}

.page-register__btn-primary:hover {
  background-color: #ff6a3d;
  border-color: #ff6a3d;
}

.page-register__btn-secondary {
  background-color: transparent;
  color: #FFB81C; /* Gold */
  border: 2px solid #FFB81C;
}

.page-register__btn-secondary:hover {
  background-color: #FFB81C;
  color: #0a0a0a; /* Dark text on gold hover */
}

/* Sections */
.page-register__dark-section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
}

/* HERO Section */
.page-register__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  margin-top: 0;
  overflow: hidden;
}

.page-register__hero-container {
  position: relative;
  margin: 0 auto;
}

.page-register__hero-image {
  width: 100%;
  margin: 0;
  display: block;
}

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

/* Product Showcase Section */
.page-register__products-section {
  width: 100%;
  padding: 60px 20px;
  background: transparent; /* Inherit body background */
}

.page-register__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr; /* Front 4 occupy 4 columns, back 2 occupy 2 columns */
  gap: 20px;
}

.page-register__products-grid {
  display: grid;
  gap: 20px;
}

.page-register__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-register__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-register__product-card {
  width: 100%;
  max-width: 300px; /* Max width for each card */
  border-radius: 0; /* No border-radius */
  overflow: hidden;
  background: transparent;
  box-shadow: none; /* No box-shadow */
  transition: transform 0.3s ease;
}

.page-register__product-card:hover {
  transform: translateY(-5px);
}

.page-register__product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-register__product-card-image {
  width: 100%;
  max-width: 300px; /* Max width for image container */
  overflow: hidden;
}

.page-register__product-card-image img {
  max-width: 100%;
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
}

/* Register Form Section */
.page-register__form-section {
  padding: 80px 20px;
  background-color: #0a0a0a; /* Dark background for this section */
}

.page-register__form-section .page-register__section-title {
  color: #FFB81C;
}

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

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

.page-register__form-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-register__form-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-register__form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for form background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-register__form-group {
  margin-bottom: 20px;
}

.page-register__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #FFB81C; /* Gold for labels */
}

.page-register__form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #E44D26; /* Orange border */
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
}

.page-register__form-input::placeholder {
  color: #ccc;
}

.page-register__captcha-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page-register__captcha-input {
  flex: 1;
}

.page-register__captcha-code {
  background-color: #E44D26;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
  min-width: 80px;
  text-align: center;
}

.page-register__form-agreement {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.page-register__checkbox {
  margin-right: 10px;
  margin-top: 5px;
}

.page-register__checkbox-label {
  color: #f0f0f0;
  font-size: 15px;
}

.page-register__link {
  color: #FFB81C; /* Gold link */
  text-decoration: none;
}

.page-register__link:hover {
  text-decoration: underline;
}

.page-register__submit-button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
}

/* Why Choose Us Section (Module 1) */
.page-register__intro-section {
  padding: 80px 20px;
  background-color: #0a0a0a; /* Dark background */
}

.page-register__intro-section .page-register__section-title {
  color: #FFB81C;
}

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

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

.page-register__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-register__feature-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-register__feature-title {
  font-size: 24px;
  color: #E44D26; /* Orange for feature titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__feature-description {
  font-size: 16px;
  color: #ccc;
}

/* Quick Access Links (Module 2) */
.page-register__quick-links-section {
  padding: 80px 20px;
  background-color: #1a1a1a; /* Medium dark background */
}

.page-register__quick-links-section .page-register__section-title {
  color: #E44D26;
}

.page-register__quick-links-section .page-register__section-description {
  color: #f0f0f0;
}

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

.page-register__quick-link-card {
  display: block;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.page-register__quick-link-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-register__quick-link-title {
  font-size: 22px;
  color: #FFB81C; /* Gold for link titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__quick-link-description {
  font-size: 15px;
  color: #ccc;
}

/* Promotions Section (Module 4) */
.page-register__promotions-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

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

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

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

.page-register__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-register__promotion-card:hover {
  transform: translateY(-8px);
}

.page-register__promotion-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-register__promotion-title {
  font-size: 22px;
  color: #E44D26; /* Orange for promotion titles */
  margin: 20px 15px 10px;
  font-weight: bold;
  min-height: 60px; /* Ensure consistent height for titles */
}

.page-register__promotion-description {
  font-size: 15px;
  color: #ccc;
  padding: 0 15px 20px;
}

.page-register__promotion-card .page-register__btn-primary {
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 16px;
}

.page-register__view-all-promos {
  text-align: center;
}

/* Safety & Customer Service (Module 5) */
.page-register__safety-support-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.page-register__safety-support-section .page-register__section-title {
  color: #E44D26;
}

.page-register__safety-support-section .page-register__section-description {
  color: #f0f0f0;
}

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

.page-register__safety-support-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.page-register__safety-support-title {
  font-size: 22px;
  color: #FFB81C; /* Gold for safety titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__safety-support-text {
  font-size: 16px;
  color: #ccc;
}

.page-register__contact-cta {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* FAQ Section (Module 6) */
.page-register__faq-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.page-register__faq-section .page-register__section-title {
  color: #FFB81C;
}

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

.page-register__faq-list {
  margin-top: 40px;
}

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-register__faq-question h3 {
  font-size: 20px;
  color: #E44D26; /* Orange for FAQ questions */
  margin: 0;
  font-weight: bold;
}

.page-register__faq-toggle {
  font-size: 24px;
  color: #FFB81C;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-register__faq-item.active .page-register__faq-toggle {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register__faq-item.active .page-register__faq-answer {
  max-height: 300px; /* Adjust based on expected content height */
  padding: 20px;
}

.page-register__faq-answer p {
  font-size: 16px;
  color: #ccc;
  margin: 0;
}

/* Blog/News Section (Module 7) */
.page-register__blog-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.page-register__blog-section .page-register__section-title {
  color: #E44D26;
}

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

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

.page-register__blog-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-register__blog-card:hover {
  transform: translateY(-8px);
}

.page-register__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-register__blog-card img {
  width: 100%;
  height: 200px; /* Fixed height for blog images */
  object-fit: cover;
  display: block;
}

.page-register__blog-title {
  font-size: 20px;
  color: #FFB81C; /* Gold for blog titles */
  margin: 15px;
  font-weight: bold;
  min-height: 50px; /* Ensure consistent height for titles */
}

.page-register__blog-excerpt {
  font-size: 15px;
  color: #ccc;
  padding: 0 15px 10px;
}

.page-register__blog-date {
  display: block;
  font-size: 13px;
  color: #888;
  padding: 0 15px 15px;
}

.page-register__view-all-news {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-register__products-container {
    grid-template-columns: 1fr;
  }

  .page-register__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-register__products-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-register__form-content {
    flex-direction: column;
  }

  .page-register__form-image-wrapper,
  .page-register__form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-register__section-title {
    font-size: 28px;
  }

  .page-register__section-description {
    font-size: 16px;
  }

  .page-register__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-register__products-grid--large {
    grid-template-columns: 1fr;
  }

  .page-register__features-grid,
  .page-register__links-grid,
  .page-register__promotion-grid,
  .page-register__safety-support-grid,
  .page-register__blog-grid {
    grid-template-columns: 1fr;
  }

  .page-register__feature-title,
  .page-register__quick-link-title,
  .page-register__promotion-title,
  .page-register__safety-support-title,
  .page-register__blog-title {
    font-size: 20px;
  }

  .page-register__faq-question h3 {
    font-size: 18px;
  }

  .page-register__contact-cta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-register__products-grid--small {
    grid-template-columns: 1fr;
  }

  .page-register__product-card {
    max-width: 100%;
  }

  .page-register__product-card-image {
    max-width: 100%;
  }

  .page-register__form-group {
    margin-bottom: 15px;
  }

  .page-register__form-label {
    font-size: 14px;
  }

  .page-register__form-input {
    padding: 10px;
    font-size: 14px;
  }

  .page-register__captcha-code {
    font-size: 16px;
    padding: 8px 12px;
  }

  .page-register__checkbox-label {
    font-size: 13px;
  }

  .page-register__btn-primary,
  .page-register__btn-secondary {
    padding: 10px 20px;
    font-size: 16px;
  }

  .page-register__faq-question h3 {
    font-size: 16px;
  }
}