/* style/faq.css */

/* Custom Color Variables */
:root {
  --page-faq-primary-color: #11A84E;
  --page-faq-secondary-color: #22C768;
  --page-faq-text-main: #F2FFF6;
  --page-faq-text-secondary: #A7D9B8;
  --page-faq-background: #08160F;
  --page-faq-card-bg: #11271B;
  --page-faq-border-color: #2E7A4E;
  --page-faq-glow-color: #57E38D;
  --page-faq-gold-color: #F2C14E;
  --page-faq-divider-color: #1E3A2A;
  --page-faq-deep-green: #0A4B2C;
  --page-faq-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-faq {
  font-family: 'Arial', sans-serif;
  color: var(--page-faq-text-main); /* Default text color for the page */
  background-color: var(--page-faq-background); /* Default background for the page content, assuming shared.css sets body background */
  line-height: 1.6;
}

/* Hero Section */
.page-faq__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Enforce image on top, content below */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  text-align: center;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and content */
}

.page-faq__hero-image {
  width: 1200px;
  height: 675px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-faq__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: var(--page-faq-card-bg); /* Use card background for content block */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-faq-border-color);
}

.page-faq__main-title {
  color: var(--page-faq-gold-color); /* Gold color for main title */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  /* Using clamp for H1 font-size */
  font-size: clamp(2.2rem, 4vw, 3.5rem); 
  max-width: 90%; /* Prevent overly long lines */
  margin-left: auto;
  margin-right: auto;
}