/*
Theme Name:   Breek Child
Theme URI:    https://1.envato.market/wp-breek-preview
Author: EstudioPatagon
Author URI: https://1.envato.market/ep-portfolio-themes
Description:  Child theme, based on Breek
Template: breek

*/

/* Add your custom code just below */


/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.faq-header {
    background-color: #E84E89;
    color: #fff;
    padding: 20px;
    font-size: 28px;
    text-align: center;
}
.faq {
    border-bottom: 1px solid #ddd;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    background-color: #f9f9f9;
}
.faq-question:hover {
    background-color: #f1f1f1;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: #E84E89;
}
.faq-answer {
    display: none;
    padding: 20px;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.6;
}
.faq.active .faq-answer {
    display: block;
}
.faq.active .faq-question::after {
    content: '-';
}
@media (max-width: 600px) {
    .faq-header {
        font-size: 24px;
        padding: 15px;
    }
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    .faq-answer {
        font-size: 14px;
        padding: 15px;
    }
}
