/* FAQ Container */
.smarcoco-faq-container {
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* FAQ Title */
.smarcoco-faq-title {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

/* FAQ Items */
.smarcoco-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Questions */
.smarcoco-faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    color: #2c3e50;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.smarcoco-faq-question:hover {
    background: linear-gradient(135deg, #e4e8eb, #d5d9dc);
}

.smarcoco-faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #3498db, #9b59b6);
    color: white;
}

.smarcoco-faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Answers */
.smarcoco-faq-answer {
    display: none; /* Hidden by default */
    background: white;
}

.smarcoco-faq-answer[hidden] {
    display: none;
}

.smarcoco-faq-answer-content {
    padding: 25px;
    color: #4a5568;
    line-height: 1.7;
    font-size: 16px;
}

.smarcoco-faq-meta {
    padding: 15px 25px;
    background: #f8f9fa;
    font-size: 14px;
    color: #718096;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .smarcoco-faq-question {
        padding: 15px;
        font-size: 18px;
    }
    
    .smarcoco-faq-answer-content {
        padding: 20px;
    }
}
/* Show first FAQ answer by default */
.smarcoco-faq-item:first-child .smarcoco-faq-answer {
    display: block;
}