.faq-azerto {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    border-radius: 10px;
}

.faq-azerto details {
    border-radius: 5px;
    padding: 10px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.faq-azerto details[open] {
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-azerto details summary {
    cursor: pointer;
    font-weight: bold;
    margin: -10px -10px 10px -10px;
    padding: 10px;
    background-color: #eeeeee;
    border-radius: 5px;
    list-style: none;
    transition: all 0.3s ease;
	font-family: 'Poppins' !important;
}

.faq-azerto details summary:hover {
    background-color: #dcdcdc;
}

.faq-azerto details summary::marker {
    color: #888;
    font-size: 16px;
}

.faq-azerto details p {
    margin: 0;
    padding: 10px;
    line-height: 1.6;
    color: #333;
}