/* ========== СТИЛИ ДЛЯ ИНФОРМАЦИОННЫХ СТРАНИЦ (Этап 6) ========== */

/* Основной контейнер */
.info-page {
    padding: 40px 0 60px;
}

.info-page h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

/* Блоки информации */
.info-block {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-block h2 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.info-block p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-block ul, 
.info-block ol {
    margin: 15px 0 15px 25px;
}

.info-block li {
    margin: 8px 0;
    line-height: 1.5;
}

/* Таблицы */
.info-table,
.requisites-table-full {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table th,
.info-table td,
.requisites-table-full td {
    padding: 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.info-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.info-table td {
    background: var(--white);
}

.requisites-table-full td:first-child {
    font-weight: 600;
    width: 35%;
    background: var(--light);
}

/* Способы оплаты */
.payment-method {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.payment-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-method h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Примечание по реквизитам */
.requisites-note-full {
    background: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary);
}

/* Адаптив */
@media (max-width: 768px) {
    .info-page {
        padding: 30px 0;
    }
    
    .info-block {
        padding: 20px;
    }
    
    .info-table th,
    .info-table td,
    .requisites-table-full td {
        display: block;
        width: 100%;
    }
    
    .requisites-table-full td:first-child {
        width: 100%;
    }
    
    .requisites-table-full tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: var(--border-radius);
    }
}