<style>
#blog-faq-container {
    max-width: 800px;
    margin: 40px auto 64px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-faq-container {
    max-width: 800px;
    margin: 40px auto 64px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-faq-header {
    background: #16a085;
    color: white;
    padding: 20px;
    text-align: center;
    margin: 0;
}

.blog-faq-item {
    border-bottom: 1px solid #eee;
}

.blog-faq-item:last-child {
    border-bottom: none;
}

.blog-faq-question {
    background: white;
    border: none;
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.blog-faq-question:hover {
    background-color: #f8f9fa;
}

.blog-faq-question:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.blog-faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #16a085;;
}

.blog-faq-question[aria-expanded="true"] .blog-faq-icon {
    transform: rotate(-90deg);
}

.blog-faq-answer {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #f8f9fa;
    padding: 0 20px;
    height: 0;
}

.blog-faq-answer.active {
    height: auto;
    min-height: 60px;
    padding: 20px;
}

.blog-faq-answer-content {
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-faq-container {
        margin: 40px 10px 20px 10px;
    }
    
    .blog-faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .blog-faq-answer {
        padding: 0 15px;
    }
    
    .blog-faq-answer.active {
        padding: 15px;
    }
}
</style>