.page-register {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Primary dark background */
}

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

.page-register-section-title {
  color: #FFD700; /* Auxiliary gold for titles */
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-register-section-description {
  color: #B0B0B0;
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Hero Section */
.page-register-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475c 100%); /* Gradient background */
}

.page-register-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register-hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px; /* Constrain image width */
}

.page-register-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-register-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-register-hero-content h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-register-hero-content p {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Gold button */
  color: #1A202C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-register-cta-button:hover {
  background: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Form Section */
.page-register-form-section {
  padding: 80px 0;
  background-color: #2a3342;
}

.page-register-form {
  background-color: #1A202C;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  margin: 0 auto;
}

.page-register-form-group {
  margin-bottom: 25px;
}

.page-register-form-group label {
  display: block;
  margin-bottom: 10px;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

.page-register-form-group input[type="text"],
.page-register-form-group input[type="password"],
.page-register-form-group input[type="tel"],
.page-register-form-group input[type="email"] {
  width: calc(100% - 20px);
  padding: 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #2c3547;
  color: #E0E0E0;
  font-size: 1em;
}

.page-register-form-group input::placeholder {
  color: #888;
}

.page-register-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.page-register-checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: #FFD700;
}

.page-register-checkbox-group label {
  margin-bottom: 0;
  color: #E0E0E0;
  font-size: 1em;
}

.page-register-checkbox-group a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-register-checkbox-group a:hover {
  text-decoration: underline;
}

.page-register-submit-button {
  width: 100%;
  padding: 18px;
  background: #FFD700;
  color: #1A202C;
  border: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-register-submit-button:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-register-login-link {
  text-align: center;
  margin-top: 30px;
  color: #B0B0B0;
  font-size: 1.1em;
}

.page-register-login-link a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-register-login-link a:hover {
  text-decoration: underline;
}

/* Benefits Section */
.page-register-benefits-section {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-register-benefit-item {
  background-color: #2a3342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-register-benefit-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons circular */
  background-color: #3e4d66;
  padding: 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-register-benefit-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-register-benefit-item p {
  color: #B0B0B0;
  line-height: 1.6;
}

.page-register-cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* Steps Section */
.page-register-steps-section {
  padding: 80px 0;
  background-color: #2a3342;
}

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

.page-register-step-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-register-step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #1A202C;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-register-step-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-register-step-item p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* FAQ Section */
.page-register-faq-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-register-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #2a3342;
  border: 1px solid #3e4d66;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #3e4d66;
}

.faq-question h3 {
  color: #FFD700;
  font-size: 1.2em;
  margin: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #222b38;
  color: #E0E0E0;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Enough to contain content */
  padding: 20px;
  border: 1px solid #3e4d66;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #E6C200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-register-hero-content h1 {
    font-size: 2.8em;
  }
  .page-register-hero-content p {
    font-size: 1.1em;
  }
  .page-register-cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-register-section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-register-hero-section {
    padding: 40px 15px;
  }
  .page-register-hero-image img {
    border-radius: 8px;
  }
  .page-register-hero-content h1 {
    font-size: 2.2em;
  }
  .page-register-hero-content p {
    font-size: 1em;
  }
  .page-register-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-register-form-section, .page-register-benefits-section, .page-register-steps-section, .page-register-faq-section {
    padding: 50px 0;
  }
  .page-register-form {
    padding: 30px;
  }
  .page-register-form-group label {
    font-size: 1em;
  }
  .page-register-form-group input {
    padding: 12px;
  }
  .page-register-submit-button {
    font-size: 1.2em;
    padding: 15px;
  }
  .page-register-benefits-grid, .page-register-steps-grid {
    grid-template-columns: 1fr;
  }
  .page-register-benefit-item img {
    width: 90px;
    height: 90px;
  }
  .page-register-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-register-hero-content h1 {
    font-size: 1.8em;
  }
  .page-register-hero-content p {
    font-size: 0.9em;
  }
  .page-register-cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-register-section-title {
    font-size: 1.8em;
  }
  .page-register-section-description {
    font-size: 0.9em;
  }
  .page-register-form {
    padding: 20px;
  }
  .page-register-submit-button {
    font-size: 1.1em;
    padding: 12px;
  }
  .page-register-login-link {
    font-size: 0.9em;
  }
  .page-register-benefit-item h3 {
    font-size: 1.3em;
  }
  .page-register-step-item h3 {
    font-size: 1.2em;
  }
}