/* style/resources-faq.css */
.page-resources-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-resources-faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-faq__hero {
    background: linear-gradient(135deg, #0056B3, #FFC107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-faq__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-faq__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-resources-faq__hero-description a {
    color: #FFC107;
    text-decoration: underline;
}

.page-resources-faq__hero-button {
    display: inline-block;
    background-color: #FFC107;
    color: #0056B3;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-faq__hero-button:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
}

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

.page-resources-faq__article-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-faq__section-title {
    font-size: 2em;
    color: #0056B3;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFC107;
    font-weight: bold;
}

.page-resources-faq__faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.page-resources-faq__faq-item:last-child {
    border-bottom: none;
}

.page-resources-faq__question {
    font-size: 1.3em;
    color: #0056B3;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.page-resources-faq__question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-resources-faq__question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-faq__answer {
    font-size: 1em;
    color: #555;
    padding-left: 15px;
    margin-top: 10px;
    display: none;
}

.page-resources-faq__answer.active {
    display: block;
}

.page-resources-faq__answer p {
    margin-bottom: 1em;
}

.page-resources-faq__answer ul,
.page-resources-faq__answer ol {
    margin-left: 25px;
    margin-bottom: 1em;
}

.page-resources-faq__answer li {
    margin-bottom: 0.5em;
}

.page-resources-faq__answer a {
    color: #0056B3;
    text-decoration: underline;
}

.page-resources-faq__action-button {
    display: inline-block;
    background-color: #0056B3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-faq__action-button:hover {
    background-color: #004080;
}

.page-resources-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-faq__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-faq__return-link-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.page-resources-faq__return-link {
    display: inline-block;
    color: #0056B3;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 1px solid #0056B3;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-faq__return-link:hover {
    background-color: #0056B3;
    color: #fff;
}

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

    .page-resources-faq__hero-description {
        font-size: 1em;
    }

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

    .page-resources-faq__question {
        font-size: 1.1em;
    }

    .page-resources-faq__article-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-faq__main-title {
        font-size: 1.6em;
    }

    .page-resources-faq__hero {
        padding: 60px 0;
    }

    .page-resources-faq__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-faq__section-title {
        font-size: 1.5em;
    }

    .page-resources-faq__question {
        font-size: 1em;
    }

    .page-resources-faq__answer {
        padding-left: 0;
    }
}