.pnm-faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.pnm-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pnm-faq-item:hover {
    border-color: var(--color-gold-500, #c5a059);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.08);
}

.pnm-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.pnm-faq-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-burgundy-900, #31000b);
    margin-right: 20px;
    flex-shrink: 0;
}

.pnm-faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-burgundy-900, #31000b);
    margin: 0;
    flex-grow: 1;
    line-height: 1.5;
    text-align: left;
}

.pnm-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-burgundy-900, #31000b);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pnm-faq-item-active {
    border-color: var(--color-gold-500, #c5a059);
}

.pnm-faq-item-active .pnm-faq-toggle {
    background-color: var(--color-burgundy-900, #31000b);
    transform: rotate(180deg);
}

.pnm-faq-content {
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #f4f8fc;
    border-top: 1px solid #e2e8f0;
}

.pnm-faq-content-inner {
    padding: 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
}

.pnm-faq-content-inner p {
    margin: 0 0 15px 0;
}

.pnm-faq-content-inner p:last-child {
    margin-bottom: 0;
}

.pnm-faq-content-inner a {
    color: var(--color-gold-500, #c5a059);
    text-decoration: underline;
    font-weight: 600;
}

.pnm-faq-content-inner a:hover {
    color: var(--color-burgundy-900, #31000b);
}
