/* style/faq.css */

/* General Page Styles */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-faq__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-faq__section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.page-faq__btn {
    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, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-faq__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border-color: #FFD700;
}

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

.page-faq__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    margin-left: 15px;
}

.page-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-faq__btn--accent {
    background-color: #0A2342;
    color: #FFD700;
    border-color: #0A2342;
}

.page-faq__btn--accent:hover {
    background-color: #1a3a60;
    border-color: #1a3a60;
}

.page-faq__btn--outline {
    background-color: transparent;
    color: #0A2342;
    border-color: #0A2342;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-faq__btn--outline:hover {
    background-color: #0A2342;
    color: #FFD700;
}

/* Hero Section */
.page-faq__hero {
    background: linear-gradient(135deg, #0A2342 0%, #2a4a75 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-faq__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Introduction Section */
.page-faq__introduction {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-faq__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-faq__text-content {
    flex: 2;
}

.page-faq__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-faq__text-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #444;
}

.page-faq__text-content li {
    margin-bottom: 8px;
}

.page-faq__image-content {
    flex: 1;
    text-align: center;
}

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

/* Categories Section */
.page-faq__categories {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.page-faq__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-faq__category-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-faq__category-title {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq__category-description {
    color: #666;
    margin-bottom: 25px;
}

/* General Questions (Accordion) Section */
.page-faq__general-questions {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-faq__accordion-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-faq__accordion-header {
    background-color: #0A2342;
    color: #FFD700;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
    background-color: #1a3a60;
}

.page-faq__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-faq__accordion-content {
    padding: 20px 25px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    display: none;
    color: #333;
}

.page-faq__accordion-content p {
    margin-bottom: 15px;
}

.page-faq__accordion-content ul, .page-faq__accordion-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
    color: #333;
}

.page-faq__accordion-content li {
    margin-bottom: 8px;
}

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

/* Call to Action Section */
.page-faq__cta {
    background: linear-gradient(90deg, #0A2342, #1a3a60);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-faq__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-faq__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-faq__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-faq__image-content {
        margin-top: 30px;
    }

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

@media (max-width: 768px) {
    .page-faq__hero {
        padding: 80px 0;
    }

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

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

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

    .page-faq__category-grid {
        grid-template-columns: 1fr;
    }

    .page-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-faq__accordion-content {
        padding: 15px 20px;
    }

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

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

    .page-faq__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero {
        padding: 60px 0;
    }

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

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

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

    .page-faq__introduction, .page-faq__categories, .page-faq__general-questions, .page-faq__cta {
        padding: 50px 0;
    }

    .page-faq__btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .page-faq__btn--secondary {
        margin-top: 0;
    }

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

    .page-faq__cta-description {
        font-size: 0.9em;
    }
}