/* SSS (FAQ) CSS */
.sss-container {
    padding-top: 100px;
    min-height: 100vh;
}

details {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

details summary {
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem;
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::before {
    content: '+';
    margin-right: 10px;
    font-weight: bold;
    color: #64a19d;
}

details[open] summary::before {
    content: '-';
}

details summary:hover {
    color: #64a19d;
}

details p {
    padding: 1rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

details[open] {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
