:root{
    /* Colors */
    --white: #fff;
    --dark: #252525;
    --primary: #3b141c;
    --secondary: #f3961c;
    --light-pink: #faf4f5;
    --medium-gray: #ccc;
}

/* FAQ section */
.faq-section{
    padding: 120px 0;
}
.faq-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 30px;
}
.faq1 hr{
    height: 2px;
    width: 95%;
    margin-top: 20px;
    background: var(--secondary);
    border: none;
    margin-left: 20px;
}

.faq-section .image img{
    width: 80%;
}
.faq-section .questions{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.faq1{
    width: 47rem;
}
.faq1 h3{
    cursor: pointer;
    font-size: 20px;
    background-color: gainsboro;
    padding: 10px;
    border-radius: 15px;
}
.faq1 p{
    margin: 0 11px;
    font-style: italic;
    letter-spacing: .5px;
    font-weight: 400;
    line-height: 25px;
    background-color: var(--light-pink);
    padding: 8px 13px;
}
.faq1 .hidden{
    display: none;
}

@media screen and (max-width: 900px) {
    .faq1{
        width: 100%;
    }
    .faq1 h3{
        font-size: 18px;
    }
    .faq1 p{
        font-size: 15px;
    }
}

@media screen and (max-width: 530px) {
    .faq1 hr{
        margin-left: 0;
    }
}