/* style/resources-f168-download-app-faq.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-dark: #0a0a0a; /* Inherited from shared.css body */
    --button-login-color: #EA7C07;
}

.page-resources-f168-download-app-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--background-dark);
}

.page-resources-f168-download-app-faq__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    color: var(--secondary-color);
}

.page-resources-f168-download-app-faq__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-f168-download-app-faq__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-f168-download-app-faq__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-resources-f168-download-app-faq__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-f168-download-app-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-f168-download-app-faq__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-f168-download-app-faq__btn-primary,
.page-resources-f168-download-app-faq__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-resources-f168-download-app-faq__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-f168-download-app-faq__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-resources-f168-download-app-faq__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-f168-download-app-faq__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-f168-download-app-faq__content-area {
    padding: 60px 0;
}

.page-resources-f168-download-app-faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-f168-download-app-faq__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.page-resources-f168-download-app-faq__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-f168-download-app-faq__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-f168-download-app-faq__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-resources-f168-download-app-faq__light-bg p,
.page-resources-f168-download-app-faq__light-bg li {
    color: var(--text-dark);
}

.page-resources-f168-download-app-faq__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-f168-download-app-faq__list-ordered {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-f168-download-app-faq__image-wrapper {
    margin: 30px auto;
    text-align: center;
}

.page-resources-f168-download-app-faq__image-wrapper--small {
    max-width: 80%;
}

.page-resources-f168-download-app-faq__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-resources-f168-download-app-faq__faq-list {
    margin-top: 40px;
}

.page-resources-f168-download-app-faq__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-resources-f168-download-app-faq__light-bg .page-resources-f168-download-app-faq__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.page-resources-f168-download-app-faq__faq-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-f168-download-app-faq__light-bg .page-resources-f168-download-app-faq__faq-item:hover {
    background-color: #f0f0f0;
}

.page-resources-f168-download-app-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.15em;
    color: var(--primary-color);
    position: relative;
    list-style: none; /* For details/summary */
}

.page-resources-f168-download-app-faq__light-bg .page-resources-f168-download-app-faq__faq-question {
    color: var(--primary-color);
}

.page-resources-f168-download-app-faq__faq-question::-webkit-details-marker {
    display: none;
}

.page-resources-f168-download-app-faq__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.page-resources-f168-download-app-faq__faq-item[open] .page-resources-f168-download-app-faq__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-f168-download-app-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-light);
}

.page-resources-f168-download-app-faq__faq-answer p {
    margin-bottom: 10px;
}

.page-resources-f168-download-app-faq__light-bg .page-resources-f168-download-app-faq__faq-answer {
    color: var(--text-dark);
}

/* CTA Section */
.page-resources-f168-download-app-faq__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-f168-download-app-faq__cta-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.page-resources-f168-download-app-faq__cta-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-resources-f168-download-app-faq__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-resources-f168-download-app-faq__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}