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

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

.page-faq__hero-section {
    background: linear-gradient(135deg, #4A2780, #6c3f9f);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-faq__hero-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #4A2780;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__hero-cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-faq__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-faq__faq-list {
    display: grid;
    gap: 20px;
}

.page-faq__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-faq__faq-item[open] {
    background-color: #f0f0f0;
    border-color: #ddd;
}

.page-faq__faq-question {
    font-size: 1.3em;
    color: #4A2780;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    position: relative;
}

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

.page-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

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

.page-faq__faq-answer {
    padding-top: 15px;
    color: #555;
    border-top: 1px solid #eee;
    margin-top: 15px;
    font-size: 1.05em;
}

.page-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-faq__highlight {
    color: #4A2780;
    font-weight: bold;
}

.page-faq__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-faq__btn--primary {
    background-color: #4A2780;
    color: #ffffff;
}

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

.page-faq__btn--accent {
    background-color: #FFD700;
    color: #4A2780;
}

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

.page-faq__btn--secondary {
    background-color: #927db3;
    color: #ffffff;
}

.page-faq__btn--secondary:hover {
    background-color: #8068a6;
    transform: translateY(-2px);
}

.page-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq__cta-bottom {
    background-color: #4A2780;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

.page-faq__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq__hero-title {
        font-size: 2.2em;
    }
    .page-faq__hero-description {
        font-size: 1em;
    }
    .page-faq__faq-question {
        font-size: 1.1em;
    }
    .page-faq__faq-answer {
        font-size: 0.95em;
    }
    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__cta-description {
        font-size: 0.95em;
    }
    .page-faq__hero-section, .page-faq__cta-bottom {
        padding: 50px 0;
    }
    .page-faq__content-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-title {
        font-size: 1.8em;
    }
    .page-faq__faq-question {
        font-size: 1em;
    }
    .page-faq__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}