.faq-container {
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

details[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

summary {
    list-style: none; /* Removes default arrow in some browsers */
    cursor: pointer;
    font-weight: 600;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom indicator instead of the default arrow */
summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.2rem;
}

details[open] summary::after {
    content: '−';
}

.faq-answer {
    padding-bottom: 1rem;
    color: #555;
    border-top: 1px solid #fafafa;
    padding-top: 1rem;
}