/* =========================================================================
   FAQ Page (aw-faq-*)
   ========================================================================= */

.aw-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.aw-faq h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.aw-faq__intro {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.aw-faq__section {
    margin-bottom: 2rem;
}
.aw-faq__section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc9814;
}
.aw-faq__item {
    border: 1px solid #e8e6df;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.aw-faq__item[open] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.aw-faq__question {
    padding: 14px 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.4;
}
.aw-faq__question::-webkit-details-marker {
    display: none;
}
.aw-faq__question::before {
    content: "+";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f4f0;
    color: #dc9814;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
}
.aw-faq__item[open] .aw-faq__question::before {
    content: "\2212";
    background: #dc9814;
    color: #fff;
}
.aw-faq__answer {
    padding: 0 18px 16px 54px;
    line-height: 1.7;
    color: #444;
}
.aw-faq__answer a {
    color: #dc9814;
    text-decoration: underline;
}
.aw-faq__answer a:hover {
    color: #c5870f;
}
.aw-faq__cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, #1a1333 0%, #2d1b4e 100%);
    border-radius: 12px;
    color: #fff;
}
.aw-faq__cta h2 {
    border: none;
    color: #fff;
    margin-bottom: 0.5rem;
}
.aw-faq__cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .aw-faq { padding: 1rem 0.5rem; }
    .aw-faq h1 { font-size: 1.5rem; }
    .aw-faq__question { padding: 12px 14px; font-size: 0.95rem; }
    .aw-faq__answer { padding: 0 14px 14px 46px; }
}
