.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Ensure consistency with body background */
}

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

.page-register__dark-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 0;
}

.page-register__light-bg {
  background-color: #242424;
  color: #ffffff;
  padding: 80px 0;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0, #1a1a1a);
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-register__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-register__hero-button {
  display: inline-block;
  background-color: #EA7C07; /* Login button color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__hero-button:hover {
  background-color: #d46f06;
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-register__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-register__section-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-register__benefit-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(38, 169, 224, 0.2);
}

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

.page-register__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-register__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-register__benefit-description {
  color: #cccccc;
  font-size: 0.95em;
}

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

.page-register__step-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(38, 169, 224, 0.2);
}

.page-register__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #EA7C07;
  margin-bottom: 15px;
}

.page-register__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-register__step-description {
  color: #cccccc;
  font-size: 0.95em;
}

.page-register__guide-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-register__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register__form-section {
  padding: 80px 0;
  text-align: center;
}

.page-register__form {
  max-width: 500px;
  margin: 40px auto 0 auto;
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(38, 169, 224, 0.2);
}

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

.page-register__form-label {
  display: block;
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-register__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444444;
  border-radius: 8px;
  background-color: #333333;
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
}

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

.page-register__form-input:focus {
  border-color: #26A9E0;
  outline: none;
  box-shadow: 0 0 0 3px rgba(38, 169, 224, 0.3);
}

.page-register__submit-button {
  background-color: #EA7C07; /* Login button color */
  color: #FFFFFF;
  padding: 15px 25px;
  border-radius: 8px;
  border: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.page-register__submit-button:hover {
  background-color: #d46f06;
}

.page-register__login-link-text {
  color: #cccccc;
  margin-top: 20px;
  font-size: 0.95em;
}

.page-register__login-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-register__login-link:hover {
  text-decoration: underline;
}

.page-register__notes-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-register__note-item {
  background-color: #2a2a2a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #cccccc;
  font-size: 1em;
  border-left: 5px solid #26A9E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-register__text-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-register__text-link:hover {
  text-decoration: underline;
}

.page-register__notes-conclusion {
  color: #e0e0e0;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-register__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__faq-item {
  background-color: #2a2a2a;
  border: 1px solid rgba(38, 169, 224, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #333333;
  border-bottom: 1px solid #444444;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-register__faq-item details > summary {
  list-style: none;
}
.page-register__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-register__faq-question:hover {
  background-color: #3a3a3a;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  color: #EA7C07;
}

.page-register__faq-answer {
  padding: 20px;
  color: #cccccc;
  font-size: 0.95em;
}

.page-register__faq-item.active .page-register__faq-answer {
  max-height: 2000px; /* Large enough to show all content */
  transition: max-height 0.5s ease-in-out;
}

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

.page-register__cta-final-section {
  text-align: center;
  padding: 60px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-register__cta-final-section .page-register__section-title {
  color: #FFFFFF;
  text-shadow: none;
}

.page-register__cta-final-section .page-register__section-intro {
  color: #f0f0f0;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login button color */
  color: #FFFFFF;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}

.page-register__cta-button:hover {
  background-color: #d46f06;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }

  .page-register__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-register {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-register__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-register__hero-title {
    font-size: 2.2em;
  }

  .page-register__hero-description {
    font-size: 1em;
  }

  .page-register__hero-button,
  .page-register__submit-button,
  .page-register__cta-button {
    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__container,
  .page-register__hero-content,
  .page-register__form,
  .page-register__notes-list,
  .page-register__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-register__section-title {
    font-size: 1.8em;
  }

  .page-register__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-register__benefit-card,
  .page-register__step-card {
    padding: 20px;
  }

  .page-register__benefit-icon {
    width: 80px;
    height: 80px;
  }

  .page-register__benefit-title {
    font-size: 1.3em;
  }

  .page-register__guide-image,
  .page-register img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-register__form-section,
  .page-register__notes-section,
  .page-register__faq-section,
  .page-register__cta-final-section {
    padding: 40px 0;
  }

  .page-register__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-register__faq-answer {
    padding: 15px;
  }
}