/* style/register.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-register__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Hero Section */
.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #003366, #001a33);
  position: relative;
  overflow: hidden;
  /* Assuming shared.css handles body padding-top for header offset */
  /* This padding is for visual spacing within the hero section itself */
}

.page-register__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-register__hero-title {
  font-size: 3.5em;
  color: #FFCC00;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-register__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-register__btn-primary,
.page-register__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Crucial for mobile responsiveness */
}

.page-register__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

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

.page-register__btn-secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-register__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-register__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-register__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 0;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Benefits Section */
.page-register__benefits-section {
  padding: 60px 0;
  background-color: #003366; /* Dark blue background */
  color: #ffffff; /* Light text for dark background */
}

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

.page-register__benefit-card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-register__benefit-card:hover {
  transform: translateY(-10px);
}

.page-register__card-title {
  font-size: 1.5em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-register__image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-register__benefits-image,
.page-register__guide-image,
.page-register__security-image,
.page-register__bonus-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

/* Guide Section */
.page-register__guide-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

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

.page-register__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-register__step-number {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #FFCC00;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-register__step-title {
  font-size: 1.4em;
  color: #FFCC00;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Security Section */
.page-register__security-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-register__security-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register__security-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register__list-title {
  font-size: 1.4em;
  color: #FFCC00;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__list-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Bonus Section */
.page-register__bonus-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

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

/* FAQ Section */
.page-register__faq-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-register__faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

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

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  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-title {
  font-size: 1.2em;
  color: #FFCC00;
  margin: 0;
  font-weight: bold;
}

.page-register__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFCC00;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-register__faq-item.active .page-register__faq-toggle {
  transform: rotate(45deg); /* + to X, or just use - */
}

.page-register__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-register__faq-item.active .page-register__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-register__faq-text {
  margin: 0;
  font-size: 1em;
}

/* Final CTA Section */
.page-register__cta-final-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #003366, #001a33);
  text-align: center;
}

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

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 15px 30px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }

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

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