body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    background: #341937;

}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

header img {
    height: 50px;
}
.image-wrapper {
    width: 30%;
    padding:20px;
}
h1 {
    color: white;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.6rem;
    padding: 20px;
    width: 70%;
    margin: 0;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 0 0 auto;
}
footer {
    background: #341937;
    min-height: 100px; 
}
.title-section {
    background: linear-gradient(125deg, #953461, #953461, #341937);
    color: black;
    padding: 40px;
    text-align: center;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.faq-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    
}
.faq-sections {
    width: 30%;
    padding: 20px;
}
.faq-section {
    padding: 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 300ms;
}
.faq-section:hover {
    background: #F3F4F6;
}

.faqs-wrapper {
    width: 70%;
    padding: 20px 20px 0 20px;
    position: relative;
}
.faq {
    position: relative;
    background: #F3F4F6;
    padding: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    height: auto;
    transition: 600ms;
    transition-timing-function: ease;
    cursor: pointer;
    border-radius: 10px;
}
.faq-title {
    margin: 0;
    padding-right: 30px;
    font-weight: 600;
    font-size: 1.2rem;
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 400ms ease-out, margin-top 400ms ease-out;
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;
}
.faq-content {
    overflow:hidden;
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.plus-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    transition: 300ms;
    width: 18px;
    height: 18px;
    
}
 .faq-set {
    display: none;
    transition: opacity 300ms ease;
    position: relative;
    opacity: 0;
}
.active {
    display: block;
    opacity: 1;

}
.current {
    background: linear-gradient(120deg, #953461, #953461, #341937)!important;
    color: #f7edf1!important;
}
.open {
    grid-template-rows: 1fr;
    margin-top: 10px;
}
.rotate {
    transform: rotate(45deg)!important;
}

@media screen and (max-width: 480px) {
    .header-container {
        flex-direction: column;
        padding: 20px;
    }
    .image-wrapper {
        width: auto;
    }
    h1 {
        width: 100%;
        font-size: 1.2rem;
        margin-bottom: 0;
        text-align: center;
        padding: 10px 0;
    }
    .faq-container {
        flex-direction: column;
        width: 100%;
    }
    .faq-sections {
        width: auto;
    }
    .faq-set {
        width: 90%;
        padding: 0;
        margin: 20px auto;
    }
    .faqs-wrapper {
        width: 100%;
        padding: 0;
    }
    
}