/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
}

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

.page-faq__hero {
    background: linear-gradient(135deg, #CC0000 0%, #a00000 100%); /* Primary color gradient */
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Secondary color accent */
}

.page-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Secondary color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-faq__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.page-faq__hero-cta {
    display: inline-block;
    margin-top: 20px;
}

.page-faq__content {
    padding: 60px 0;
}

.page-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-faq__faq-item {
    background-color: #2a2a2a; /* Slightly lighter dark background for items */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.page-faq__faq-question {
    display: block;
    padding: 25px 30px;
    font-size: 1.4em;
    font-weight: bold;
    color: #FFD700; /* Secondary color for questions */
    cursor: pointer;
    position: relative;
    user-select: none;
    background-color: #333;
    transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
    background-color: #444;
}

.page-faq__faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #CC0000;
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-faq__faq-answer {
    padding: 20px 30px 30px;
    background-color: #2a2a2a;
    color: #f0f0f0;
    font-size: 1.1em;
    border-top: 1px solid #444;
}

.page-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-faq__faq-answer ul,
.page-faq__faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
    list-style-position: inside;
}

.page-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-faq__faq-answer strong {
    color: #FFD700;
}

.page-faq__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-faq__btn--primary {
    background-color: #CC0000; /* Primary brand color */
    color: #fff;
}

.page-faq__btn--primary:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__btn--secondary {
    background-color: #FFD700; /* Secondary brand color */
    color: #333;
}

.page-faq__btn--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__btn--tertiary {
    background-color: #555; /* Dark grey for less prominent actions */
    color: #fff;
}

.page-faq__btn--tertiary:hover {
    background-color: #666;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__btn--download {
    background-color: #007bff; /* A distinct color for download actions */
    color: #fff;
}

.page-faq__btn--download:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__btn--lg {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-faq__cta-bottom {
    background-color: #222; /* Darker background for CTA */
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #CC0000; /* Primary color accent */
}

.page-faq__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Secondary color for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-faq__cta-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ccc;
}

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

.page-faq__highlight {
    color: #FFD700; /* Highlight important keywords with secondary color */
    font-weight: bold;
}

.page-faq__image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
}

.page-faq__image-banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq__hero-title {
        font-size: 2.5em;
    }

    .page-faq__hero-subtitle,
    .page-faq__cta-text {
        font-size: 1em;
    }

    .page-faq__faq-question {
        font-size: 1.2em;
        padding: 20px 25px;
    }

    .page-faq__faq-answer {
        font-size: 1em;
        padding: 15px 25px 25px;
    }

    .page-faq__cta-title {
        font-size: 2em;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq__btn--lg {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-faq__hero,
    .page-faq__content,
    .page-faq__cta-bottom {
        padding: 40px 0;
    }

    .page-faq__hero-title {
        font-size: 2em;
    }

    .page-faq__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-faq__faq-question::after {
        right: 20px;
    }

    .page-faq__faq-answer {
        padding: 10px 20px 20px;
    }

    .page-faq__btn {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    .page-faq__cta-title {
        font-size: 1.8em;
    }
}