.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background: #e9ecef;
}

.faq-number {
    font-weight: bold;
    color: #df4200;
    margin-right: 15px;
    font-size: 18px;
    min-width: 30px;
}

.faq-question {
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    color: #df4200;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}