:root {
--White: hsl(0, 0%, 100%);
--Lightpink: hsl(275, 100%, 97%);
--Grayishpurple: hsl(292, 16%, 49%);
--Darkpurple: hsl(292, 42%, 14%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-image: url(./assets/images/background-pattern-desktop.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: var(--Lightpink);
    min-width: 400px;
    font-size: 16px;
}
.container {
    background-color: var(--White);
    border-radius: 10px;
    margin: 0 auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    margin-top: 8rem;
}
.faq-header {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.faq-header img {
    width: 1.7rem;
    height: 1.7rem;;
}
.faq-header h1 {
    color: var(--Darkpurple);
    font-size: 2.5rem;
    font-weight: 700;
}
.accordion-item {
    border-bottom: 1px solid var(--White);
}
.accordion-btn {
    opacity: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--Darkpurple);
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}
.accordion-btn:hover {
    color: purple;
    font-weight: bolder;
    border: none;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    color: var(--Grayishpurple);
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    line-height: 1.6;
}
.accordion-content.show {
    max-height: 450px;
  }
  
.accordion-content.show p {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  
.accordion-content p {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
.icons {
    display: flex;
    gap: 0.5rem;
}

.minus {
    display: none;
}

