@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.three {
    background-color: #000000;
    color: #ffffff;
}
.three_content {
    max-width: 1200px;
    margin: 0 auto;
}
.three p {
    font-size: 30px;
    padding: 30px 0;
}
.three h2 {
    font-size: 50px;
}
.three ul li {
    padding: 5px;
    border-radius: 5px;
    font-size: 20px;
    color: #000000;
    list-style-type: none;
    margin-bottom: 10px;
    background-color: #fff;
}
.faq {
    background-color: #ffffff;
    color: #000000;
    max-width: 1200px;
    margin-top: 1rem;
    padding: 0.7rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
    border-radius: 10px;
}
.faq:last-child {
    border-bottom: none;
}
.questions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.questions h3 {
    font-size: 1.2rem;
}
.answer {

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}
.answer p {
    border-top: 1px solid #000;
    margin-top: 0.5rem;
    line-height: 1.6;
    font-size: 1.4rem;
    padding-bottom: 5px;
}
.faq.active .answer {
    max-height: 1200px;
}
.faq.active svg {
    transform: rotate(180deg);
}
svg {
    color: #fff;
    transition: transform 0.3s ease-out;
}
.accordion .ps {
    color: rgb(0, 0, 0);
    font-size: 25px;
    padding: 15px 0;
}