.faqs-head{
    margin-top: 5%;
    padding-top: 3%;
    border-top: 2px solid #ADADAD;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #075797;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    margin: 0;
    transition: 0.3s ease;
    position: relative;
}

.faq-item h3:hover {
    background: rgba(7, 87, 151, 0.05);
}

.faq-item h3::after {
    content: "+";
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding: 0 10px;
    margin: 0;
}

.faq-item.active p {
    padding: 10px;
}