/* style/blog-hi8823-registration-login-faq.css */

/* Variables and Base Styles */
:root {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --bg-dark: #140C0C;
  --card-bg: #2A1212;
  --text-light: #FFF1E8;
  --text-dark: #333333;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red: #7E0D0D;
  --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-blog-hi8823-registration-login-faq {
  font-family: Arial, sans-serif;
  color: var(--text-light); /* Default text color for dark background */
  background-color: var(--bg-dark); /* Body background color from custom palette */
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

.page-blog-hi8823-registration-login-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-blog-hi8823-registration-login-faq__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-red); /* Fallback background */
}

.page-blog-hi8823-registration-login-faq__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px; /* Limit height for aesthetic */
  object-fit: cover;
  display: block;
}

.page-blog-hi8823-registration-login-faq__hero-content {
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  width: 100%; /* Ensure content takes full width within max-width */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  margin-top: -5px; /* Slightly overlap with image for visual continuity */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-blog-hi8823-registration-login-faq__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 700;
  color: var(--gold-color);
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hi8823-registration-login-faq__hero-description {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hi8823-registration-login-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-hi8823-registration-login-faq__btn-primary,
.page-blog-hi8823-registration-login-faq__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  max-width: 100%; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  text-align: center;
}

.page-blog-hi8823-registration-login-faq__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Always white for primary button text */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-blog-hi8823-registration-login-faq__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-hi8823-registration-login-faq__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-hi8823-registration-login-faq__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Section Titles */
.page-blog-hi8823-registration-login-faq__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

.page-blog-hi8823-registration-login-faq__sub-title {
  font-size: clamp(1.3em, 2.5vw, 1.8em);
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid var(--gold-color);
  padding-left: 15px;
}

/* Content Area */
.page-blog-hi8823-registration-login-faq__introduction-section,
.page-blog-hi8823-registration-login-faq__conclusion-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--card-bg); /* Dark background for these sections */
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.page-blog-hi8823-registration-login-faq__content-area {
  padding: 40px 20px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-hi8823-registration-login-faq__content-area.page-blog-hi8823-registration-login-faq__dark-bg {
  background-color: var(--card-bg); /* Darker background for alternating sections */
}

.page-blog-hi8823-registration-login-faq__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-light); /* Light text on dark background */
}

.page-blog-hi8823-registration-login-faq__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-blog-hi8823-registration-login-faq__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-hi8823-registration-login-faq__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--text-light);
}

.page-blog-hi8823-registration-login-faq__image-wrapper {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--card-bg); /* Placeholder background */
}

.page-blog-hi8823-registration-login-faq__content-image {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
.page-blog-hi8823-registration-login-faq__faq-section {
  padding: 60px 20px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
}

.page-blog-hi8823-registration-login-faq__faq-list {
  margin-top: 40px;
}

.page-blog-hi8823-registration-login-faq__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-hi8823-registration-login-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--gold-color);
  cursor: pointer;
  background-color: var(--deep-red);
  border-bottom: 1px solid var(--border-color);
  list-style: none; /* For details/summary */
}

.page-blog-hi8823-registration-login-faq__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-hi8823-registration-login-faq__faq-question:hover {
  background-color: var(--secondary-color);
}

.page-blog-hi8823-registration-login-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-hi8823-registration-login-faq__faq-item[open] .page-blog-hi8823-registration-login-faq__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or just '-' */
}