.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-register__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-register__section-title {
  font-size: 36px;
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-register__section-description {
  font-size: 18px;
  color: #FFF6D6;
  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, body handles header offset */
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('/path/to/hero-background.jpg'); /* Example for background, actual img is used */
  background-size: cover;
  background-position: center;
}

.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: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.4);
}

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

.page-register__hero-content h1 {
  font-size: 52px;
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-register__hero-content p {
  font-size: 20px;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #FFF6D6;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Why Register Section */
.page-register__why-register {
  background-color: #0A0A0A;
}

.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: #111111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

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

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

.page-register__feature-title {
  font-size: 24px;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__feature-item p {
  font-size: 16px;
  color: #FFF6D6;
  line-height: 1.7;
}

/* Registration Guide Section */
.page-register__guide {
  background-color: #0A0A0A;
}

.page-register__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}

.page-register__step-item {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-register__step-number {
  font-size: 48px;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1;
}

.page-register__step-title {
  font-size: 28px;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__step-item p {
  font-size: 17px;
  color: #FFF6D6;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-register__step-item img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-top: 15px;
  object-fit: cover;
}

.page-register__button-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-register__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: #F2C14E;
  text-decoration: none;
  border: 2px solid #F2C14E;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-register__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.page-register__benefits {
  background-color: #0A0A0A;
}

.page-register__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-register__benefits-list li {
  background-color: #111111;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  text-align: left;
  border: 1px solid #3A2A12;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-register__benefits-list li:hover {
  background-color: #1b1b1b;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-register__benefits-list li img {
  flex-shrink: 0;
  
  
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD36B;
}

.page-register__benefit-content h3 {
  font-size: 24px;
  color: #FFD36B;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__benefit-content p {
  font-size: 16px;
  color: #FFF6D6;
  line-height: 1.7;
}

/* Security Section */
.page-register__security {
  background-color: #0A0A0A;
}

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

.page-register__security-item {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-register__security-item h3 {
  font-size: 22px;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__security-item p {
  font-size: 16px;
  color: #FFF6D6;
  line-height: 1.7;
}

/* FAQ Section */
.page-register__faq-section {
  background-color: #0A0A0A;
}

.page-register__faq-list {
  margin-top: 50px;
  text-align: left;
}

details.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111;
  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 20px;
  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: #1b1b1b;
}

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

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

details.page-register__faq-item .page-register__faq-answer {
  padding: 0 20px 20px;
  background: #1a1a1a;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  color: #FFF6D6;
  line-height: 1.7;
}

/* Final CTA Section */
.page-register__cta-final {
  background-color: #0A0A0A;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__hero-content h1 {
    font-size: 44px;
  }
  .page-register__section-title {
    font-size: 32px;
  }
  .page-register__feature-title {
    font-size: 22px;
  }
  .page-register__step-title {
    font-size: 26px;
  }
  .page-register__benefits-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__benefits-list li img {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__hero-content h1 {
    font-size: 36px;
  }
  .page-register__hero-content p {
    font-size: 18px;
  }
  .page-register__cta-button {
    padding: 12px 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;
  }
  .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;
  }
  .page-register__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__section {
    padding: 40px 15px;
  }
  .page-register__section-title {
    font-size: 28px;
  }
  .page-register__section-description {
    font-size: 16px;
  }
  .page-register__features-grid,
  .page-register__steps,
  .page-register__security-tips {
    grid-template-columns: 1fr;
  }
  .page-register__feature-item,
  .page-register__step-item,
  .page-register__security-item {
    padding: 20px;
  }
  .page-register__feature-title {
    font-size: 20px;
  }
  .page-register__step-title {
    font-size: 24px;
  }
  .page-register__benefits-list li {
    padding: 20px;
  }
  .page-register__benefit-content h3 {
    font-size: 20px;
  }
  .page-register__benefits-list li img {
    
    
  }
  details.page-register__faq-item summary.page-register__faq-question {
    padding: 15px;
  }
  .page-register__faq-qtext {
    font-size: 16px;
  }
  .page-register__faq-toggle {
    font-size: 20px;
  }
  .page-register__faq-answer {
    padding: 0 15px 15px;
  }
  .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;
  }
}

@media (max-width: 480px) {
  .page-register__hero-content h1 {
    font-size: 32px;
  }
  .page-register__section-title {
    font-size: 26px;
  }
  .page-register__hero-content p {
    font-size: 16px;
  }
  .page-register__cta-button {
    font-size: 16px;
  }
  .page-register__btn-secondary {
    font-size: 16px;
  }
  .page-register__step-number {
    font-size: 40px;
  }
}