.page-faq {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-faq-hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0.3;
    animation: pageFaqRotate 20s linear infinite;
}

@keyframes pageFaqRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-faq-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-faq-subtitle {
    font-size: 1.2em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-faq-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-faq-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-faq-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-faq-btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Accordion Section */
.page-faq-accordion-section {
    padding: 60px 0;
    background-color: #071A31; /* Slightly lighter dark blue */
}

.page-faq-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-faq-item {
    background-color: #1a3a60; /* Darker blue for item background */
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq-accordion-header {
    width: 100%;
    background-color: #2b507d; /* Even darker blue for header */
    color: #FFD700;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-faq-accordion-header:hover {
    background-color: #3d6699;
}

.page-faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.page-faq-icon::before,
.page-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #FFD700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-faq-icon::before {
    width: 12px;
    height: 2px;
}

.page-faq-icon::after {
    width: 2px;
    height: 12px;
}

.page-faq-accordion-header.active .page-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg); /* Rotate to hide vertical line */
}

.page-faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 25px;
    background-color: #1a3a60;
    color: #E0E0E0;
}

.page-faq-accordion-content.open {
    max-height: 500px; /* Adjust as needed, should be larger than content */
    padding: 20px 25px;
}

.page-faq-accordion-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

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

.page-faq-link-text:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

.page-faq-btn-small {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
}

/* CTA Section */
.page-faq-cta {
    background: linear-gradient(45deg, #0A2342, #1f426e); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #E0E0E0;
    position: relative;
    overflow: hidden;
}

.page-faq-cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-faq-cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-faq-cta-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

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

    .page-faq-subtitle {
        font-size: 1em;
    }

    .page-faq-hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq-btn {
        width: 80%;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

    .page-faq-accordion-content.open {
        padding: 15px 20px;
    }

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

    .page-faq-cta-text {
        font-size: 1.1em;
    }

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

@media (max-width: 480px) {
    .page-faq-title {
        font-size: 2em;
    }
    .page-faq-btn {
        width: 90%;
    }
    .page-faq-section-title {
        font-size: 1.8em;
    }
    .page-faq-accordion-header {
        font-size: 1em;
    }
}