/* style/faq.css */

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

.page-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq-hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

.page-faq-section {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.page-faq-section:last-of-type {
    border-bottom: none;
}

.page-faq-section--alt-bg {
    background-color: #f1f1f1;
}

.page-faq-section-title {
    font-size: 2em;
    color: #003366; /* Deep blue for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-faq-accordion {
    margin-top: 30px;
}

.page-faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-faq-item[open] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
}

.page-faq-question {
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #003366; /* Deep blue for questions */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-faq-question:hover {
    background-color: #f9f9f9;
}

.page-faq-question::marker, .page-faq-question::-webkit-details-marker {
    display: none;
}

.page-faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #555;
    border-top: 1px solid #eee;
}

.page-faq-answer p {
    margin-bottom: 10px;
}

.page-faq-answer p:last-child {
    margin-bottom: 0;
}

.page-faq-image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 0;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-faq-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-faq-link:hover {
    color: #FFD700;
}

/* Buttons */
.page-faq-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-faq-button--primary {
    background-color: #FFD700;
    color: #003366;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-faq-button--primary:hover {
    background-color: #e6c200;
    color: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-button--secondary {
    background-color: #003366;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.page-faq-button--secondary:hover {
    background-color: #002244;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 51, 102, 0.4);
}

.page-faq-button--large {
    font-size: 1.2em;
    padding: 15px 35px;
    margin-top: 20px;
}

/* Call to Action Section */
.page-faq-cta {
    background-color: #003366;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-top: 30px;
}

.page-faq-cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-faq-cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-title {
        font-size: 2.2em;
    }
    .page-faq-subtitle {
        font-size: 1em;
    }
    .page-faq-section-title {
        font-size: 1.8em;
    }
    .page-faq-question {
        font-size: 1.05em;
        padding: 18px 20px;
    }
    .page-faq-answer {
        padding: 12px 20px 15px;
    }
    .page-faq-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .page-faq-button--large {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .page-faq-cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-faq-hero {
        padding: 40px 0;
    }
    .page-faq-title {
        font-size: 1.8em;
    }
    .page-faq-subtitle {
        font-size: 0.9em;
    }
    .page-faq-section {
        padding: 30px 0;
    }
    .page-faq-section-title {
        font-size: 1.6em;
    }
    .page-faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-faq-answer {
        padding: 10px 15px 12px;
    }
    .page-faq-button {
        width: 100%;
        margin-bottom: 10px;
    }
    .page-faq-button--large {
        width: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .page-faq-cta-title {
        font-size: 1.8em;
    }
    .page-faq-cta-description {
        font-size: 0.9em;
    }
}