.section2{display: none;
    width: 100%;
    height: 100%;
}

.faq {
    max-width: 70%;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.question {
    background-color: #007bff;
    color: white;
    padding: px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    transition: background 0.3s ease-in-out;
}
.question:hover {
    background-color: #0056b3;
}
.answer {
    display: none;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
}
.icon {
    transition: transform 0.3s ease-in-out;
}
.rotate {
    transform: rotate(180deg);
}