/* style/faq.css */

:root {
  --cmm88-primary-color: #E53935;
  --cmm88-secondary-color: #FF5A4F;
  --cmm88-text-main: #333333;
  --cmm88-card-bg: #FFFFFF;
  --cmm88-background: #F5F7FA;
  --cmm88-border-color: #E0E0E0;
}

.page-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--cmm88-text-main); /* Default text color for light body background */
  background-color: var(--cmm88-background); /* Body background is F5F7FA */
}

.page-faq__hero-section {
  display: flex;
  flex-direction: column; /* Force image then text */
  align-items: center;
  text-align: center;
  padding: 10px 0 40px 0; /* Minimal top padding, rely on body for header offset */
  background-color: var(--cmm88-background);
  position: relative;
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  margin-bottom: 20px;
}

.page-faq__hero-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-faq__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-faq__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
  color: var(--cmm88-primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-faq__description {
  font-size: 1.1em;
  color: var(--cmm88-text-main);
  margin-bottom: 30px;
}

.page-faq__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}