.faq-container{
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.faq-container h1{
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}
.faq-search {
    position: relative;
    width: 60%;
    height: 3rem;
    display: flex;
    margin: 0 auto 2rem auto;
}
@media only screen and (max-width:1000px){
    .faq-container{
        width: 90%;
    }
    .faq-search{
        width: 90%;
    }
    .faq-container h1{
        font-size: 1.5rem;
    }
}
.faq-search input{
    width: 100%;
    border-radius: 20px;
    border: none;
    font-size: 1.1rem;
    font-family: 'Ubuntu', sans-serif;
}
.faq-search button{
    height: 100%;
    width: 3.5rem;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 20px;
    border: none;
}
.faq-search button img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.faqs{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faqs summary{
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    outline: none;
}
.faqs p{
    width: 100%;
}
.faqs details{
    border: 1px solid #ccc;
    padding: 15px;
    color: black;
    width: 100%;
    box-sizing: border-box;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.faqs details[open] {
    background-color: #e6f7ff;
    border-color: #007bff;
}