.page-register {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  max-width: 1390px; /* Boxed layout */
  margin: 0 auto; /* Center content */
  padding-left: 15px; /* Responsive padding */
  padding-right: 15px; /* Responsive padding */
  font-family: Arial, sans-serif; /* Fallback font */
  color: #333333; /* Default text color */
  background-color: #FFFFFF; /* Page background */
}

/* Hero Section */
.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 10px; /* Small top padding */
}

.page-register__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.page-register__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5; /* Matches 1920x600 ratio */
  object-fit: cover;
  object-position: center;
  filter: none; /* No color filters */
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-register__hero-content {
  max-width: 900px;
}

.page-register__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: #1C7FB5; /* Darker primary color for better contrast */
  margin-bottom: 20px;
}

.page-register__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #C76A06; /* Darker orange for buttons */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Minimum button width */
  min-height: 48px; /* Minimum button height */
  line-height: 1.2; /* Ensure text fits */
  text-align: center;
}

.page-register__cta-button:hover {
  background-color: #A65A05; /* Even darker on hover */
  transform: translateY(-2px);
}

/* General Section Styling */
.page-register__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #1C7FB5; /* Darker primary color for better contrast */
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1C7FB5; /* Darker primary color */
  border-radius: 2px;
}

/* Benefits Section */
.page-register__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0 0 44px 0;
}

.page-register__benefit-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-register__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register__benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000; /* Black for titles */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-register__benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

/* Guide Section */
.page-register__guide-section {
  margin-bottom: 40px;
}

.page-register__guide-content {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.page-register__guide-steps {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
}

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

.page-register__step-item {
  background-color: #ffffff;
  border-left: 5px solid #1C7FB5; /* Darker primary color accent */
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
}

.page-register__step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000; /* Black for titles */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.page-register__inline-link {
  color: #C76A06; /* Darker orange for links */
  text-decoration: underline;
}

.page-register__inline-link:hover {
  color: #A65A05;
}

.page-register__guide-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__guide-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* No color filters */
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

/* FAQ Section */
.page-register__faq-section {
  margin-bottom: 60px;
}

.page-register__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-register__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000; /* Black for questions */
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer; /* Indicate interactivity */
  position: relative;
  padding-right: 30px; /* Space for an indicator */
}

.page-register__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #1C7FB5;
  transition: transform 0.2s ease;
}

.page-register__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-register__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
  padding-top: 0; /* Initially no padding-top */
  border-top: 1px solid #eeeeee;
}

.page-register__faq-question.active + .page-register__faq-answer {
  max-height: fit-content; /* Allows content to push height */
  padding-top: 15px; /* Padding when open */
}

/* CTA Section at bottom */
.page-register__cta-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #eef7fc; /* Light blue background */
  border-radius: 12px;
  margin-bottom: 50px;
}

.page-register__cta-section .page-register__section-title {
  color: #000000; /* Black for emphasis */
  margin-top: 0;
  margin-bottom: 20px;
}

.page-register__cta-section .page-register__section-title::after {
  background-color: #C76A06; /* Darker orange for emphasis line */
}

.page-register__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

/* Global image size enforcement for content area */
.page-register img {
  width: auto; /* Allow natural width */
  height: auto; /* Allow natural height */
  max-width: 100%; /* Responsive */
  min-width: 200px; /* Enforce minimum width */
  min-height: 200px; /* Enforce minimum height */
  object-fit: cover; /* Maintain aspect ratio */
}

/* Media Queries for responsiveness */
@media (max-width: 849px) {
  .page-register__hero-section {
    margin-bottom: 30px;
  }
  .page-register__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-register__description {
    font-size: 1rem;
  }
  .page-register__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-register__guide-content {
    flex-direction: column;
    align-items: center;
  }
  .page-register__guide-steps,
  .page-register__guide-image {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-register {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* Ensure all content area images are responsive */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-register__main-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .page-register__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-register__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-register__benefit-title,
  .page-register__step-title,
  .page-register__faq-question {
    font-size: 1.1rem;
  }
  .page-register__benefit-description,
  .page-register__step-description,
  .page-register__faq-answer {
    font-size: 0.95rem;
  }
  .page-register__faq-answer {
    text-align: left; /* Adjust justify for smaller screens if needed */
  }
}