
/* --- 1. DOCUMENTS BANNER (HERO) --- */
.docs-banner {
    background-color: #8c2388; /* Brand Purple */
    padding: 80px 0;
    text-align: center;
    color: #fff;
    
    /* Полная ширина */
    width: 100%;
    display: block;
    margin: 0;
}

.docs-title {
    font-family: 'EB Garamond', serif;
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.docs-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto; /* Центрируем текст */
}


/* --- 2. ҚҰЖАТТАР ТІЗІМІ (СПИСОК) --- */

.documents-section {
    padding: 80px 0;
    background-color: #fcfbfd; 
    min-height: 600px;
}

.docs-list-block {
    max-width: 900px; 
    margin: 0 auto; 
}

.docs-list-block h2 {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    color: #8c2388;
    margin-bottom: 40px;
    text-align: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Карточка */
.check-list li {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.check-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(140, 35, 136, 0.15);
}

/* Иконка */
.check-icon {
    width: 70px;
    height: 70px;
    background-color: #f9f0f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 30px;
    flex-shrink: 0;
}

/* Текст */
.check-text h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.check-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* --- АДАПТИВ --- */
@media (max-width: 768px) {
    .docs-title {
        font-size: 32px;
    }
    
    .check-list li {
        padding: 20px;
        flex-direction: row; 
        align-items: flex-start;
    }
    
    .check-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-right: 20px;
    }

    .check-text h3 {
        font-size: 18px;
    }
    
    .check-text p {
        font-size: 14px;
    }
}