.page-register {
  color: #F3F8FF; /* Text Main color for overall page content */
  background-color: #08162B; /* Deep Navy background for body */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-register__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main titles */
  line-height: 1.2;
}

.page-register__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #AFC4E8; /* Text Secondary color */
}

.page-register__text-main {
  color: #F2C14E;
  font-weight: bold;
}

.page-register__text-link {
  color: #4FA8FF;
  text-decoration: underline;
}

/* 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, body handles --header-offset */
  background-color: #08162B; /* Deep Navy */
}

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

.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 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-register__hero-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 20px;
  color: #F3F8FF; /* Text Main */
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-register__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

/* Steps Section */
.page-register__steps-section {
  padding: 80px 0;
  background-color: #08162B;
}

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

.page-register__step-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-register__step-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.page-register__step-icon img {
  
  
  object-fit: contain;
  max-width: 100%;
}

.page-register__step-title {
  font-size: 24px;
  font-weight: 700;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-register__step-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

.page-register__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-register__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-register__btn-secondary {
  background: #10233F; /* Card BG */
  color: #4FA8FF; /* Glow */
  border: 2px solid #244D84; /* Border */
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-secondary:hover {
  background-color: #1B3357; /* Divider */
  color: #F3F8FF; /* Text Main */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Why Register Section */
.page-register__why-register-section {
  padding: 80px 0;
  background-color: #113B7A; /* Primary color */
}

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

.page-register__feature-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-register__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-register__feature-title {
  font-size: 26px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

/* Promotions Section */
.page-register__promotions-section {
  padding: 80px 0;
  background-color: #08162B;
}

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

.page-register__promo-card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-register__promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  max-width: 100%;
}

.page-register__promo-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #F3F8FF; /* Text Main */
  padding: 20px 25px 10px;
}

.page-register__promo-card p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-register__promo-card .page-register__btn-secondary {
  margin: 0 25px 25px;
  align-self: flex-start;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 80px 0;
  background-color: #113B7A; /* Primary color */
}

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

details.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

details.page-register__faq-item summary.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 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: #1B3357; /* Divider */
}

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

.page-register__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-register__faq-item .page-register__faq-answer {
  padding: 0 25px 25px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 10px 10px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
}

/* Final CTA Section */
.page-register__final-cta-section {
  padding: 80px 0;
  background-color: #08162B;
  text-align: center;
}

.page-register__final-cta-section .page-register__section-title {
  color: #F2C14E;
}

.page-register__final-cta-section .page-register__section-description {
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__section-title {
    font-size: 32px;
  }
  .page-register__hero-title {
    font-size: clamp(28px, 4.5vw, 42px);
  }
  .page-register__hero-description {
    font-size: 18px;
  }
  .page-register__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-register__step-title {
    font-size: 22px;
  }
  .page-register__feature-title {
    font-size: 24px;
  }
  .page-register__promo-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-register__container {
    padding: 20px 15px;
  }
  .page-register__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__hero-image img {
    border-radius: 8px;
  }
  .page-register__hero-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-register__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-register__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-register__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-register__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-register__steps-section, .page-register__why-register-section, .page-register__promotions-section, .page-register__faq-section, .page-register__final-cta-section {
    padding: 50px 0;
  }
  .page-register__steps-list, .page-register__features-grid, .page-register__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-register__step-item, .page-register__feature-item, .page-register__promo-card {
    padding: 20px;
  }
  .page-register__step-title {
    font-size: 20px;
  }
  .page-register__feature-title, .page-register__promo-card h3 {
    font-size: 20px;
  }
  .page-register__button-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__btn-primary, .page-register__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-register__section, .page-register__card, .page-register__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  details.page-register__faq-item summary.page-register__faq-question {
    padding: 15px 18px;
  }
  .page-register__faq-qtext {
    font-size: 16px;
  }
  .page-register__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }
  details.page-register__faq-item .page-register__faq-answer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: clamp(22px, 8vw, 30px);
  }
  .page-register__section-title {
    font-size: 24px;
  }
  .page-register__hero-description {
    font-size: 15px;
  }
  .page-register__cta-button {
    font-size: 15px;
  }
  .page-register__step-title {
    font-size: 18px;
  }
  .page-register__feature-title, .page-register__promo-card h3 {
    font-size: 18px;
  }
  .page-register__faq-qtext {
    font-size: 15px;
  }
}