/* style/resources-account-registration.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* General Styling for the page content */
.page-resources-account-registration {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-account-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-account-registration__section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-account-registration__section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-account-registration__dark-bg {
  background-color: #017439; /* Brand color as background */
  color: #ffffff; /* Light text for dark background */
}

.page-resources-account-registration__section-title {
  font-size: 2.5em;
  color: #FFFF00; /* Yellow for titles, high contrast with dark backgrounds */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-account-registration__paragraph {
  font-size: 1.1em;
  color: #f0f0f0; /* Light grey for paragraphs */
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-account-registration__paragraph a {
  color: #FFFF00; /* Yellow for links in paragraphs */
  text-decoration: underline;
}

/* Hero Section */
.page-resources-account-registration__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-resources-account-registration__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Make image subtle in background */
}

.page-resources-account-registration__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-account-registration__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-resources-account-registration__hero-title {
  font-size: 3.5em;
  color: #FFFF00; /* Yellow for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-account-registration__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-account-registration__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-resources-account-registration__btn-primary,
.page-resources-account-registration__btn-secondary,
.page-resources-account-registration__btn-register,
.page-resources-account-registration__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box; /* Crucial for mobile responsiveness */
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-resources-account-registration__btn-primary {
  background: #017439; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-account-registration__btn-primary:hover {
  background: #005a2e;
  border-color: #005a2e;
}

.page-resources-account-registration__btn-secondary {
  background: #ffffff;
  color: #017439; /* Brand primary color */
  border: 2px solid #017439;
}

.page-resources-account-registration__btn-secondary:hover {
  background: #f0f0f0;
  color: #005a2e;
  border-color: #005a2e;
}

.page-resources-account-registration__btn-register {
  background: #C30808; /* Specific color for register */
  color: #FFFF00; /* Specific font color for register */
  border: 2px solid #C30808;
}

.page-resources-account-registration__btn-register:hover {
  background: #a00606;
  border-color: #a00606;
}

.page-resources-account-registration__btn-login {
  background: #C30808; /* Specific color for login */
  color: #FFFF00; /* Specific font color for login */
  border: 2px solid #C30808;
}

.page-resources-account-registration__btn-login:hover {
  background: #a00606;
  border-color: #a00606;
}

/* Step Cards for Registration Process */
.page-resources-account-registration__step-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-account-registration__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #f0f0f0;
}

.page-resources-account-registration__step-card-title {
  font-size: 1.8em;
  color: #FFFF00;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-account-registration__step-list,
.page-resources-account-registration__info-list,
.page-resources-account-registration__tips-list,
.page-resources-account-registration__method-list,
.page-resources-account-registration__document-list,
.page-resources-account-registration__benefits-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-resources-account-registration__info-list,
.page-resources-account-registration__tips-list,
.page-resources-account-registration__method-list,
.page-resources-account-registration__document-list,
.page-resources-account-registration__benefits-list {
    list-style-type: disc;
}

.page-resources-account-registration__step-list li,
.page-resources-account-registration__info-list li,
.page-resources-account-registration__tips-list li,
.page-resources-account-registration__method-list li,
.page-resources-account-registration__document-list li,
.page-resources-account-registration__benefits-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-account-registration__sub-list {
  list-style-type: circle;
  padding-left: 20px;
  margin-top: 5px;
}

.page-resources-account-registration__step-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

/* Verification Process Section */
.page-resources-account-registration__verification-process {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

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

.page-resources-account-registration__verification-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #f0f0f0;
}

.page-resources-account-registration__verification-card-title {
  font-size: 1.6em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-account-registration__verification-image,
.page-resources-account-registration__document-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

/* Benefits Section */
.page-resources-account-registration__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-account-registration__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #f0f0f0;
}

.page-resources-account-registration__benefit-card-title {
  font-size: 1.5em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-account-registration__benefit-card-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-account-registration__benefits-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

/* FAQ Section */
.page-resources-account-registration__faq {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}