.faq-container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-header {
    text-align: center;
    padding: 40px 30px 30px;
    border-bottom: 1px solid #e9ecef;
}

.company-logo {
    width: 24px;
    height: 24px;
    background: #333;
    border-radius: 4px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo i {
    color: white;
    font-size: 14px;
}

.faq-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.faq-question:hover {
    background-color: #f8f9fa;
    color: #333;
}

.faq-icon {
    font-size: 18px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 20px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}