.faq-content {
    max-width: 820px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    color: #fff;
}

.faq-content h1 {
    margin-bottom: 10px;
}

.faq-page-title {
    width: 100%;
    text-align: center;
}

.faq-intro {
    margin-bottom: 30px;
    opacity: 0.85;
    line-height: 1.6;
}

.faq-section-title {
    color: var(--one-piece-yellow);
    font-family: 'Pirata One', cursive;
    font-size: 1.8rem;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    text-shadow:
        2px 2px 0px #3e2723,
        -1px -1px 0px #3e2723,
        1px -1px 0px #3e2723,
        -1px 1px 0px #3e2723,
        1px 1px 0px #3e2723;
}

.faq-item {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: color 0.15s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--one-piece-yellow);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item summary:hover {
    color: var(--one-piece-yellow);
}

.faq-answer {
    padding: 0 20px 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-cta {
    text-align: center;
    margin: 40px 0 10px;
}

.faq-cta a {
    color: var(--one-piece-yellow);
    font-weight: 600;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}
