.faq-list {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.faq-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}