.toto80-faq-container {
    margin: 40px 0;
}
.toto80-faq-item {
    margin-bottom: 12px;
    border: 1px solid #800020;
    border-radius: 14px;
    overflow: hidden;
    background: #3d0811;
}
.toto80-faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: linear-gradient(90deg, #5c0f1c, #400a13);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}
.toto80-faq-question:hover {
    background: linear-gradient(90deg, #701323, #5c0f1c);
}
.toto80-faq-question .icon {
    color: #ffcc00;
    font-size: 20px;
    font-weight: bold;
}
.toto80-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #2b050a;
}
.toto80-faq-answer p {
    margin: 15px 0;
    color: #dcdcdc;
    font-size: 14px;
    line-height: 1.6;
}
.toto80-faq-answer.open {
    max-height: 250px;
    padding: 0 20px 15px 20px;
}