.page-register {
  color: #FFFFFF; /* Text color for the entire page-register content */
  background-color: #000000; /* Main background color for the page */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  overflow: hidden;
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-register__hero-title {
  font-size: 3.5rem;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-register__hero-description {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-register__register-button,
.page-register__cta-button,
.page-register__cta-bottom-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Register button text color */
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__register-button:hover,
.page-register__cta-button:hover,
.page-register__cta-bottom-button:hover {
  background-color: #FFD700; /* Brighter gold on hover */
  transform: translateY(-3px);
}

.page-register__section-title {
  font-size: 2.8rem;
  color: #FCBC45;
  text-align: center;
  margin: 60px 0 40px;
  line-height: 1.3;
}

.page-register__value-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Darker background for contrast */
}

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

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

.page-register__value-item:hover {
  transform: translateY(-10px);
}

.page-register__value-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-register__value-heading {
  font-size: 1.8rem;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-register__value-text {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

.page-register__steps-section {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-register__step-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  position: relative;
  padding-top: 80px;
}

.page-register__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  border: 3px solid #000000;
}

.page-register__step-heading {
  font-size: 1.6rem;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-register__step-text {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-register__conditions-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-register__conditions-text {
  background-color: #000000;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-register__conditions-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-register__conditions-text ul {
  list-style: disc inside;
  margin-left: 20px;
  color: #e0e0e0;
}

.page-register__conditions-text li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-register__conditions-text a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-register__conditions-text a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-register__faq-section {
  padding: 80px 0;
  background-color: #000000;
}

.page-register__faq-list {
  margin-top: 40px;
}

.page-register__faq-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-register__faq-question {
  display: block;
  padding: 25px 30px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: #2a2a2a;
}

.page-register__faq-question::marker {
  display: none;
}

.page-register__faq-toggle {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  transform: translateY(-50%) rotate(45deg);
}

.page-register__faq-answer {
  padding: 0 30px 25px;
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
}

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

.page-register__cta-bottom-section {
  padding: 80px 0;
  background-color: #FCBC45;
  text-align: center;
}

.page-register__cta-bottom-container {
  background-color: #000000;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-register__cta-bottom-title {
  font-size: 3rem;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__cta-bottom-description {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3rem;
  }
  .page-register__section-title {
    font-size: 2.4rem;
  }
  .page-register__cta-bottom-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 500px;
    padding: 60px 15px;
  }
  .page-register__hero-title {
    font-size: 2.5rem;
  }
  .page-register__hero-description {
    font-size: 1.1rem;
  }
  .page-register__register-button,
  .page-register__cta-button,
  .page-register__cta-bottom-button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
  .page-register__section-title {
    font-size: 2rem;
    margin: 40px 0 30px;
  }
  .page-register__value-grid,
  .page-register__steps-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-register__value-item,
  .page-register__step-item {
    padding: 25px;
    padding-top: 70px;
  }
  .page-register__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  .page-register__value-heading {
    font-size: 1.6rem;
  }
  .page-register__step-heading {
    font-size: 1.4rem;
  }
  .page-register__conditions-text,
  .page-register__faq-item {
    padding: 30px;
  }
  .page-register__faq-question {
    font-size: 1.2rem;
    padding: 20px 25px;
  }
  .page-register__faq-toggle {
    right: 25px;
    font-size: 1.6rem;
  }
  .page-register__faq-answer {
    padding: 0 25px 20px;
  }
  .page-register__cta-bottom-title {
    font-size: 2rem;
  }
  .page-register__cta-bottom-description {
    font-size: 1.1rem;
  }
  .page-register__content-wrapper {
    padding: 0 15px;
  }
  .page-register__hero-image,
  .page-register__value-image,
  .page-register__steps-section img,
  .page-register__conditions-section img,
  .page-register__faq-section img,
  .page-register__cta-bottom-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 2rem;
  }
  .page-register__hero-description {
    font-size: 1rem;
  }
  .page-register__register-button,
  .page-register__cta-button,
  .page-register__cta-bottom-button {
    padding: 10px 25px;
    font-size: 1rem;
  }
  .page-register__section-title {
    font-size: 1.8rem;
  }
  .page-register__value-heading {
    font-size: 1.4rem;
  }
  .page-register__step-heading {
    font-size: 1.3rem;
  }
  .page-register__faq-question {
    font-size: 1.1rem;
  }
  .page-register__cta-bottom-title {
    font-size: 1.8rem;
  }
}