/* style/resources-b52-registration-login-faq.css */

/* Variables */
:root {
  --primary-color: #1A202C; /* Main dark background */
  --secondary-color: #FFD700; /* Gold accent */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f8f8;
  --border-color: #e0e0e0;
}

.page-resources-b52-registration-login-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--primary-color); /* Inherit from shared or specific for main */
}

/* Hero Section */
.page-resources-b52-registration-login-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 20px;
  /* padding-top is handled by main.page-content or this section, ensuring no double offset */
}

.page-resources-b52-registration-login-faq__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 30px;
}

.page-resources-b52-registration-login-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Using gold for main title */
  line-height: 1.2;
}

.page-resources-b52-registration-login-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-b52-registration-login-faq__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-b52-registration-login-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3; /* Subtle background image */
}

.page-resources-b52-registration-login-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image to ensure text contrast */
}

/* General Section Styling */
.page-resources-b52-registration-login-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--primary-color); /* Dark background */
  color: var(--text-light);
}

.page-resources-b52-registration-login-faq__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-b52-registration-login-faq__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

.page-resources-b52-registration-login-faq__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
}