@import url('root.css');

/* ------ DOCUMENTS ------ */

.title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title h2{
    font-size: 36px;
    font-weight: 500;
    color: #1e1e1e;
}

.title span{
    width: 50px; 
    height: 4px; 
    border: 10px;
    background-color: #007bff;
}

.documents{
    margin-top: 64px;
}

.document__columns{
    margin-top: 34px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
}

.dockument__column h3{
    font-size: 24px;
    font-weight: 500;
    color: #1e1e1e;
}

ul {
    margin-top: 8px;
    list-style-type: disc; /* Убедитесь, что маркеры включены */
    padding-left: 20px; /* Отступ слева для лучшего отображения */
    color: #007bff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dockument__column li {
    text-decoration: underline; /* Добавляет подчеркивание к тексту элемента списка */
}

li a{
    color: #007bff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    transition: .3s;
}

li a:hover{
    color: #0056b3;
}

/* -------------------- */


.faq{
    margin-top: 64px;
}

.faq__content{
    width: 100%;
}

.accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

details{
    background-color: #ECF3F7;
    border-radius: 10px;
    height: fit-content;
}

details p{
    padding: 0 16px 16px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}

summary{
    padding: 20px;
    cursor: pointer;
}