@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&family=Mulish:wght@200;300;400;500&display=swap');


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Mulish', 'Montserrat', sans-serif;
    background-color: #f0f0f0;
}

h2 {
    margin: 50px 0 30px;
    text-align: center;
    font-family: 'Mulish';
}

.faq-container {
    max-width: 600px;
    margin: 0 auto;
}

.faq {
    background-color: transparent;
    border: 1px solid #9fa4a8;
    margin: 20px 0;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    position: relative;
}

.faq:active {
    background-color: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
}

.faq.active::before, .faq.active::after {
    content: '\f075';
    font-family: 'Font awesome 5 Free';
    color: #BA8D7B;
    font-size: 5rem;
    position: absolute;
    opacity: 0.2;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.faq.active::before {
    color: #D1BBB2;
    top: -10px;
    left: -30px;
    transform: rotateY(180deg);
}

.faq-title {
    margin: 0 35px;
    font-family: 'Mulish';
}

.faq-text {
    display: none;
    margin: 30px 0 0;
    font-family: 'Montserrat';
}

.faq.active .faq-text {
    display: block;
}


.faq-toggle {
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    height: 30px;
    right: 30px;
    width: 30px;
}

.faq-toggle .fa-times {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    color: white;
    display: block;
}

.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

.faq.active .faq-toggle {
    background-color: #9fa4a8;
}



