.page-register {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #f8f8f8;
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-register__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background-color: #1a1a1a; /* Dark background for hero to contrast with gold/red */
  color: #ffffff;
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-register__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-register__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-register__hero-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-register__hero-button:hover {
  background-color: #b30000;
  transform: translateY(-2px);
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-bottom {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-register__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-register__feature-item {
  text-align: center;
  background-color: #fffaf0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-register__feature-item:hover {
  transform: translateY(-5px);
}

.page-register__feature-item img {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 200px; /* Ensure minimum image size */
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-register__feature-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-register__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-register__step-item {
  background-color: #fefefe;
  border-left: 5px solid #FFD700;
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.page-register__step-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-register__step-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-register__step-description {
  font-size: 1.05em;
  color: #555555;
}

.page-register__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register__rules-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-register__rule-item {
  background-color: #fefefe;
  padding: 20px 25px;
  border-left: 4px solid #8B0000;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444444;
}

.page-register__rule-item strong {
  color: #8B0000;
}

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

.page-register__faq-item {
  background-color: #fefefe;
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page-register__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #8B0000;
  cursor: pointer;
  background-color: #fff;
  position: relative;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  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 25px 20px;
  font-size: 1.05em;
  color: #555555;
  line-height: 1.8;
}

.page-register__cta-bottom {
  text-align: center;
  padding: 50px 20px;
  background-color: #8B0000;
  color: #ffffff;
}

.page-register__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-register__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__hero-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-register__value-section,
  .page-register__steps-section,
  .page-register__conditions-section,
  .page-register__faq-section,
  .page-register__cta-bottom {
    margin: 20px auto;
    padding: 30px 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-text {
    font-size: 1em;
  }
  .page-register__features-grid {
    grid-template-columns: 1fr;
  }
  .page-register__feature-item img,
  .page-register__hero-image img,
  .page-register img { /* Catch-all for content images */
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure minimum image size */
    object-fit: cover;
  }
  .page-register__step-title {
    font-size: 1.5em;
  }
  .page-register__rule-item,
  .page-register__faq-question,
  .page-register__faq-answer {
    font-size: 1em;
  }
  .page-register__cta-title {
    font-size: 1.8em;
  }
  .page-register__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.95em;
  }
  .page-register__hero-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__step-title {
    font-size: 1.3em;
  }
  .page-register__cta-title {
    font-size: 1.5em;
  }
  .page-register__cta-description {
    font-size: 1em;
  }
}

/* Ensure all content area images are at least 200px */
.page-register img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}