@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.container2 {
    margin: 0 auto;
    margin-top: 0px;
    padding: 20px;
}

section {
    width: 100%;
    background: #fff;
    margin: 9px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgb(51, 51, 51);
}

h2,
h1 {
    border-bottom: 2px solid #4070F4;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

p {
    line-height: 1.6;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

.container2 a {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

@media (max-width: 540px) {

    .container2,
    h1,
    h2 {
        border-bottom: 2px solid #4070F4;
        color: #333;
        padding-bottom: 3px;
        margin-bottom: 10px;
        font-size: 20px !important;
    }
}


/* FAQs Question Styling */

.faq-container {
    width: 92.4%;
    margin: 0 auto;
    padding: 20px;
}

#faq-head {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.faq {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.question {
    background-color: #f4f4f4;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question:hover {
    background-color: #e0e0e0;
}

.question-text {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.answer {
    padding: 20px;
    display: none;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.icon {
    font-size: 20px;
}

/* FAQs List Styling */
.faq li {
    list-style: none;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #555;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #eaeaea;
}