* {
    padding: 0;
    margin: 0;
    font-family: "Work Sans", sans-serif;
}

.background-image {
    background-image: url('assets/images/background-pattern-mobile.svg');
    background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  height: 250px;
  padding: 40px 20px;
  box-sizing: border-box;
}



body {
    background-color: hsl(275, 100%, 97%);
      
}

.icon-star {
    width: 25px;
}


.card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    padding-bottom: 1rem;
    margin-top: 7rem;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.card:hover {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}


.faq-header {
    display: flex;
    gap: 1rem;
}

.accordion-box {
    border-bottom: 1px solid hsl(275, 100%, 97%);
}

.no-border {
    border-bottom: 0px;
}

.accordion-question {
    display: flex;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    gap: 20px;
    font-weight: 700;
    justify-content: space-between;
    
}

.accordion-question:hover {
    cursor: pointer;
    color: hsl(293, 100%, 41%);
}

.toggle-icon {
    width: 20px;
    transition: transform 0.3s ease;
}
.accordion-question.open .toggle-icon {
  transform: rotate(180deg);
}

.accordion-answer {
    color: hsl(292, 16%, 49%);
    display: none;
    margin-bottom: 1rem;
    
}

.accordion-answer.active {
    display: block;
}

@media (min-width: 768px) {
    .background-image {
        background-image: url('assets/images/background-pattern-desktop.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        height: 200px;
        padding: 80px 20px;
        
    }

    .card {
        display: flex;
        flex-direction: column;
        max-width: 450px;
        padding-bottom: 1rem;
        margin: 2rem auto;
    }
    


}