.cosmo-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.cosmo-faq-header {
    text-align: center;
    margin-bottom: 30px;
    color: #2A2A2A;
}

.cosmo-faq-header p:first-child {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #043372;
}

.cosmo-faq-header .highlight {
    color: #043372;
    font-weight: bold;
}

.cosmo-faq-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.cosmo-faq-category {
    flex: 1;
    max-width: 300px;
}

.cosmo-faq-list {
    flex: 2;
    color: #2A2A2A;
}

.faq-category-item {
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    color: #2A2A2A;
}

.faq-category-item.active {
    background-color: #043372;
    color: white;
}

.category-count {
    font-size: 0.9em;
    opacity: 0.8;
}

.faq-item {
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
}

.faq-title {
    margin: 0;
    font-size: 1.1em;
    flex: 1;
}

.faq-category-badge {
    font-size: 0.8em;
    background-color: #043372;
    color: white;
    padding: 4px 8px;
    border-radius: 16px;
    margin-left: 10px;
}

.faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #043372;
    margin-left: 15px;
}

.faq-answer {
    padding: 20px;
}

.no-categories,
.no-faqs-found {
    text-align: center;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .cosmo-faq-content {
        flex-direction: column;
    }
    
    .cosmo-faq-category {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .faq-category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .faq-category-item {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
}