
.faq-section {
    max-width: 1400px;
    margin: 20px auto;
    padding: 10px 5px;
}

.faq-item {
    background: rgba(249, 115, 22, 0.08);
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-title {
    padding: 20px;
    font-size: 18px;
    background: #f8f9fa;
    font-family: 'Rubik', sans-serif;
    color: #555;
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.1s;
}

.faq-title:hover {
    background-color: rgba(234, 88, 12, 0.1);
}

.faq-title::after {
    content: '+';
    font-size: 24px;
    color: #F97316;
}

.faq-item.active .faq-title::after {
    content: '-';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    text-align: left;
    font-size: 16px;
}

.faq-content p {
    margin: 0 0 10px 0;
    padding-left: 60px;
    font-family: 'Rubik', sans-serif;
    color: #555;
    line-height: 1.5;
    font-weight: 400;
}

.faq-content ul {
    margin: 0;
    padding-left: 40px;
}

.faq-content li {
    margin-bottom: 5px;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px;
}
