body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: hsl(275, 100%, 97%);
    position: relative;
    overflow: hidden;
}

.background-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.container-faq {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    margin: 1rem;
}

@media (min-width: 768px) {
    .background-svg {
        background-image: url("../assets/images/background-pattern-desktop.svg");
    }
        
    .container-faq {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .background-svg {
        background-image: url("../assets/images/background-pattern-mobile.svg");
    }
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.faq-header h1 {
    font-size: 2rem;
    color: hsl(292, 42%, 14%);
    margin: 0;
    font-weight: 700;
}

.faq-item {
    border-bottom: 1px solid hsl(275, 100%, 97%);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: hsl(292, 42%, 14%);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: hsl(292, 16%, 49%);
}

.faq-question svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .icon-plus {
    display: none;
}

.faq-question[aria-expanded="false"] .icon-minus {
    display: none;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 1rem;
    color: hsl(292, 16%, 49%);
    line-height: 1.6;
}
