/* style/faq.css */

/* Base styles for the FAQ page */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text on dark background for general readability */
    background-color: #0A2239; /* Main brand color */
    line-height: 1.6;
}

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

.page-faq__highlight {
    color: #FFD700; /* Auxiliary color for emphasis */
    font-weight: bold;
}

/* Hero Section */
.page-faq__hero-section {
    background: linear-gradient(135deg, #0A2239, #1a3e5d);
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
    border-bottom: 2px solid #FFD700;
}

.page-faq__hero-title {
    font-size: 3em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for main title */
    font-weight: 700;
}

.page-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Titles */
.page-faq__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-faq__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

/* Accordion Styles */
.page-faq__general-questions {
    padding: 60px 0;
}

.page-faq__accordion {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__accordion-item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-faq__accordion-header {
    background-color: #1a3e5d; /* Slightly lighter dark blue */
    color: #FFD700; /* Gold for accordion headers */
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-faq__accordion-header:hover {
    background-color: #2b5c8a;
    color: #FFFFFF;
}

.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 {
    background-color: #0A2239; /* Main brand color for content */
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #E0E0E0;
}

.page-faq__accordion-content .page-faq__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-faq__accordion-content .page-faq__link:hover {
    text-decoration: underline;
}

/* Detailed Topics Grid */
.page-faq__detailed-topics {
    padding: 60px 0;
    background-color: #1a3e5d; /* Lighter dark blue for contrast */
}

.page-faq__topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-faq__topic-card {
    background-color: #0A2239; /* Main brand color for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-faq__topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-faq__topic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-faq__topic-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for topic titles */
}

.page-faq__topic-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-faq__topic-title a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.page-faq__topic-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Call to Action Section */
.page-faq__cta-section {
    background-color: #0A2239; /* Main brand color */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

.page-faq__cta-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
}

.page-faq__cta-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

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

/* Buttons */
.page-faq__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.page-faq__btn--primary {
    background-color: #FFD700; /* Gold for primary actions */
    color: #0A2239; /* Dark blue text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary actions */
    border: 2px solid #FFD700;
}

.page-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239; /* Dark blue text on gold hover */
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

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

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

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

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

    .page-faq__accordion-content p {
        padding: 10px 0;
    }

    .page-faq__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-faq__cta-buttons .page-faq__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-title {
        font-size: 1.8em;
    }

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

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

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