.page-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background is white */
}

.page-faq__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: #f8f8f8;
    text-align: center;
    overflow: hidden; /* Ensure no overflow */
}

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

.page-faq__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover; /* Default for desktop */
}

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

.page-faq__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-faq__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555555;
}

.page-faq__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    max-width: 500px; /* Limit button group width */
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px; /* Add padding for mobile */
}

.page-faq__cta-buttons--center {
    margin-top: 30px;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    flex-grow: 1; /* Allow buttons to grow */
}

.page-faq__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-faq__btn-primary:hover {
    background-color: #1f8ec4;
    border-color: #1f8ec4;
}

.page-faq__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-faq__btn-secondary:hover {
    background-color: #e0f4fc;
    color: #1f8ec4;
    border-color: #1f8ec4;
}

.page-faq__btn-small {
    padding: 8px 15px;
    font-size: 14px;
    flex-grow: unset; /* Don't grow for small buttons */
    width: auto;
}

.page-faq__section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-faq__section:nth-of-type(even) {
    background-color: #f5f5f5;
}

.page-faq__section-title {
    font-size: clamp(24px, 3vw, 36px);
    color: #26A9E0;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-faq__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item Styles (details/summary based) */
details.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 8px; /* Slightly larger radius */
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
}
details.page-faq__faq-item summary.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none; /* Hide default marker */
  transition: background-color 0.3s ease;
  color: #333333;
  font-weight: 600;
}
details.page-faq__faq-item summary.page-faq__faq-question::-webkit-details-marker {
  display: none; /* Hide Chrome/Safari marker */
}
details.page-faq__faq-item summary.page-faq__faq-question:hover {
  background: #f5f5f5;
}
.page-faq__faq-qtext {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
.page-faq__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #26A9E0; /* Use brand color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-faq__faq-item .page-faq__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-top: 1px solid #eeeeee;
  border-radius: 0 0 8px 8px;
  color: #555555;
}
.page-faq__faq-answer p {
    margin-bottom: 1em;
}
.page-faq__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-faq__article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #555555;
}

.page-faq__article-body p {
    margin-bottom: 1.5em;
    font-size: 16px;
}

.page-faq__copyright-section {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    font-size: 14px;
    color: #777777;
    margin-top: 40px;
}

/* General image styling for content sections */
.page-faq__content-image {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-faq__hero-image {
        max-width: 100%;
    }
    .page-faq__cta-buttons {
        max-width: 100%;
        padding: 0 20px;
    }
    .page-faq__section {
        padding: 30px 15px;
    }
    .page-faq__main-title {
        font-size: clamp(26px, 3.5vw, 42px);
    }
    .page-faq__section-title {
        font-size: clamp(22px, 2.8vw, 32px);
    }
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .page-faq__hero-image img {
        object-fit: contain !important; /* Prevent cropping on mobile */
        aspect-ratio: unset !important; /* Allow natural aspect ratio */
        width: 100% !important;
        height: auto !important;
        border-radius: 0;
    }
    .page-faq__main-title {
        font-size: 28px !important; /* Fixed font size for mobile */
        padding: 0 15px;
    }
    .page-faq__hero-description {
        font-size: 16px !important;
        padding: 0 15px;
    }
    .page-faq__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically on mobile */
        gap: 10px !important;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 15px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-faq__section-title {
        font-size: 24px !important; /* Fixed font size for mobile */
        margin-bottom: 20px;
        padding: 0 15px;
    }
    details.page-faq__faq-item summary.page-faq__faq-question {
        padding: 15px;
    }
    .page-faq__faq-qtext {
        font-size: 15px !important;
    }
    .page-faq__faq-toggle {
        font-size: 20px !important;
        width: 24px !important;
    }
    details.page-faq__faq-item .page-faq__faq-answer {
        padding: 0 15px 15px;
    }
    .page-faq__article-body {
        padding: 0 15px;
    }
    /* General image responsive styles */
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-faq__section,
    .page-faq__card,
    .page-faq__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* No product grid or article body specific mobile rules needed as per content */
    /* No gameshow specific mobile rules needed as this is not homepage */
}