/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
}

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

.page-faq__hero-section {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-faq__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
}

.page-faq__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-faq__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a1a; /* Dark text for contrast */
    border: 2px solid #FFD700;
}

.page-faq__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-faq__accordion-section {
    padding: 60px 0;
    background-color: #222;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.page-faq__accordion-item {
    background-color: #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-faq__accordion-header {
    background-color: #8B0000; /* Dark Red */
    color: #fff;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-faq__question-title {
    margin: 0;
    color: #fff;
    font-size: 1.2em;
}

.page-faq__accordion-icon {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
    transform: rotate(45deg);
}

.page-faq__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #3d3d3d;
    color: #e0e0e0;
}

.page-faq__accordion-content p {
    padding: 20px 0;
    margin: 0;
    line-height: 1.8;
    font-size: 1.05em;
}

.page-faq__accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

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

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

.page-faq__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-faq__image--small {
    max-width: 60%;
}

.page-faq__image--large {
    max-width: 90%;
}

.page-faq__cta-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.page-faq__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

@media (max-width: 768px) {
    .page-faq__hero-title {
        font-size: 2.5em;
    }
    .page-faq__hero-subtitle,
    .page-faq__cta-description {
        font-size: 1.1em;
    }
    .page-faq__section-title,
    .page-faq__cta-title {
        font-size: 2em;
    }
    .page-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-faq__accordion-content p {
        font-size: 0.95em;
        padding: 15px 0;
    }
    .page-faq__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-faq__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-title {
        font-size: 2em;
    }
    .page-faq__hero-subtitle {
        font-size: 1em;
    }
    .page-faq__section-title,
    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-faq__question-title {
        font-size: 1em;
    }
    .page-faq__accordion-icon {
        font-size: 1.5em;
    }
    .page-faq__accordion-content p {
        font-size: 0.9em;
        padding: 10px 0;
    }
    .page-faq__btn {
        padding: 8px 18px;
        font-size: 0.9em;
    }
}