* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #121212ea;
    color: #ffffff;
}

section {
    min-height: 100vh;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 1.8rem;
    margin: 2rem 0;
}

.faq {
    max-width: 700px;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question h3 {
    font-size: 1.4rem;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
}

.answer p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.answer p a {
    color: green;
}

.faq.active .answer {
    max-height: 300px;
}




@media only screen and (max-width: 600px) and (orientation: portrait) {

    .question h3 {
        font-size: 1.2rem;
    }

    .answer p {
        font-size: 1rem;
    }

}