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

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

.page-faq-hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-faq-hero-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-faq-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-faq-hero .page-faq-container {
    position: relative;
    z-index: 1;
}

.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);
}

.page-faq-subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-faq-description, .page-faq-paragraph {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: left;
}

.page-faq-introduction .page-faq-paragraph {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-faq-image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-faq-card {
    background-color: #1A2C42; /* Slightly lighter dark blue for cards */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-faq-card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq-card-description {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-faq-card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.page-faq-card-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000000;
}

.page-faq-detailed-sections {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-faq-category-section {
    background-color: #1A2C42;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-faq-category-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

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

.page-faq-item {
    background-color: #0A192F; /* Dark background for individual items */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-faq-subheading {
    font-size: 1.4em;
    color: #FFD700; /* Gold for subheadings */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-faq-answer {
    font-size: 1em;
    color: #E0E0E0;
}

.page-faq-answer a {
    color: #FFD700; /* Gold for links in answers */
    text-decoration: none;
    font-weight: bold;
}

.page-faq-answer a:hover {
    text-decoration: underline;
}

.page-faq-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #000000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background-color: #e6c200;
    color: #000000;
}

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

.btn-tertiary:hover {
    background-color: #FFD700;
    color: #0A192F; /* Dark blue text on gold hover */
    transform: translateY(-2px);
}

.page-faq-cta-bottom {
    text-align: center;
    background-color: #1A2C42;
    padding: 60px 40px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-faq-cta-description {
    font-size: 1.2em;
    color: #B0B0B0;
    margin-bottom: 30px;
}

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

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

.highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-title {
        font-size: 3em;
    }
    .page-faq-section-title {
        font-size: 2em;
    }
    .page-faq-category-title {
        font-size: 1.8em;
    }
    .page-faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-faq-hero-image-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-faq-hero {
        padding: 60px 0 30px;
    }
    .page-faq-title {
        font-size: 2.5em;
    }
    .page-faq-subtitle {
        font-size: 1.1em;
    }
    .page-faq-section-title {
        font-size: 1.8em;
    }
    .page-faq-category-title {
        font-size: 1.6em;
    }
    .page-faq-card {
        padding: 25px;
    }
    .page-faq-card-title {
        font-size: 1.4em;
    }
    .page-faq-category-section {
        padding: 30px;
    }
    .page-faq-item {
        padding: 20px;
    }
    .page-faq-subheading {
        font-size: 1.3em;
    }
    .page-faq-cta-title {
        font-size: 2em;
    }
    .page-faq-cta-description {
        font-size: 1em;
    }
    .page-faq-hero-image-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .page-faq-hero {
        padding: 40px 0 20px;
    }
    .page-faq-title {
        font-size: 2em;
    }
    .page-faq-subtitle {
        font-size: 1em;
    }
    .page-faq-section-title {
        font-size: 1.5em;
    }
    .page-faq-category-title {
        font-size: 1.4em;
    }
    .page-faq-grid {
        grid-template-columns: 1fr;
    }
    .page-faq-card {
        padding: 20px;
    }
    .page-faq-card-title {
        font-size: 1.3em;
    }
    .page-faq-category-section {
        padding: 20px;
    }
    .page-faq-item {
        padding: 15px;
    }
    .page-faq-subheading {
        font-size: 1.2em;
    }
    .page-faq-cta-title {
        font-size: 1.8em;
    }
    .page-faq-hero-image-wrapper {
        max-width: 350px;
    }
}