.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

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

.page-register__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-register__section-description {
  font-size: clamp(16px, 2vw, 18px);
  color: #4A5568;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
}

.page-register__hero-container {
  position: relative;
  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;
}

.page-register__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-register__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__description {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-register__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button--secondary {
  background: #A5C4FF; /* Glow color for secondary action */
  color: #1F2D3D;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__cta-button--secondary:hover {
  background: #6FA3FF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-register__link-button {
  display: inline-block;
  padding: 12px 25px;
  color: #2F6BFF;
  text-decoration: none;
  border: 2px solid #2F6BFF;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-register__link-button:hover {
  background: #2F6BFF;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Why Join Section */
.page-register__why-join-section {
  padding: 80px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
}

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

.page-register__feature-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-register__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register__feature-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-register__card-title {
  font-size: clamp(20px, 2.5vw, 24px);
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-register__feature-card p {
  font-size: 16px;
  color: #4A5568;
}

/* Process Section */
.page-register__process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
}

.page-register__process-section .page-register__section-title,
.page-register__process-section .page-register__section-description {
  color: #ffffff;
}

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

.page-register__step-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-register__step-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 50%;
  border: 4px solid #A5C4FF; /* Glow */
  object-fit: cover;
}

.page-register__step-title {
  font-size: clamp(20px, 2.5vw, 24px);
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-register__step-item p {
  font-size: 16px;
  color: #e0e0e0;
}

/* Bonuses Section */
.page-register__bonuses-section {
  padding: 80px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
}

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

.page-register__bonus-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-register__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register__bonus-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
}

.page-register__faq-section .page-register__section-title,
.page-register__faq-section .page-register__section-description {
  color: #ffffff;
}

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

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

details.page-register__faq-item summary.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-register__faq-item summary.page-register__faq-question::-webkit-details-marker {
  display: none;
}

details.page-register__faq-item summary.page-register__faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-register__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
}

.page-register__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-register__faq-item .page-register__faq-answer {
  padding: 0 25px 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  color: #e0e0e0;
}

.page-register__faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.page-register__cta-section {
  padding: 80px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
  text-align: center;
}

.page-register__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-register__hero-image img {
    border-radius: 8px;
  }
  .page-register__feature-card,
  .page-register__bonus-card {
    padding: 25px;
  }
  .page-register__step-item {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__main-title {
    font-size: 32px;
  }
  .page-register__description {
    font-size: 16px;
  }
  .page-register__cta-button {
    padding: 14px 30px;
    font-size: 18px;
    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__why-join-section,
  .page-register__process-section,
  .page-register__bonuses-section,
  .page-register__faq-section,
  .page-register__cta-section {
    padding: 60px 0;
  }
  .page-register__section-title {
    font-size: 28px;
  }
  .page-register__section-description {
    font-size: 15px;
  }
  .page-register__features-grid,
  .page-register__process-steps,
  .page-register__bonus-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-register__feature-card,
  .page-register__bonus-card,
  .page-register__step-item {
    padding: 20px;
  }
  .page-register__card-title,
  .page-register__step-title {
    font-size: 20px;
  }
  .page-register__feature-card img,
  .page-register__bonus-card img,
  .page-register__step-item img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-register__faq-qtext {
    font-size: 16px;
  }
  details.page-register__faq-item summary.page-register__faq-question {
    padding: 15px 20px;
  }
  details.page-register__faq-item .page-register__faq-answer {
    padding: 0 20px 15px;
  }

  .page-register__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__cta-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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