/* страница-гид */
.guide-page {
    padding: 40px 0;
    background: #ffffff;
    min-height: 100vh;
    color: #000000;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.guide-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    border-bottom: 2px solid #000;
}

.guide-header h1 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.guide-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.publication-date {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Основной контент */
.guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-section {
    margin-bottom: 50px;
    padding: 0 20px;
}

.guide-section h2 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.guide-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

/* Списки */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Шаги */
.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: #000000;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #333;
    margin: 0;
}

/* Предупреждающий блок */
.warning-box {
    background: #f8f8f8;
    border: 2px solid #000;
    padding: 25px;
    margin: 20px 0;
}

.warning-box h3 {
    color: #000;
    margin-bottom: 15px;
    font-size: 18px;
}

.warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 25px;
}

.warning-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Таблица сравнения */
.comparison-table {
    overflow-x: auto;
    margin: 20px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.comparison-table th {
    background: #000;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #000;
}

.comparison-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) {
    background: #f8f8f8;
}

/* Шаги проверки */
.check-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.check-step {
    padding: 20px;
    background: #f8f8f8;
    border-left: 4px solid #000;
}

.check-step h3 {
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.check-step p {
    margin: 0;
    color: #333;
}

/* Контактная информация */
.contact-info {
    background: #f8f8f8;
    padding: 25px;
    margin: 20px 0;
}

.contact-info h3 {
    color: #000;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.contact-info li:last-child {
    border-bottom: none;
}

/* Финальное предупреждение */
.final-warning {
    background: #000;
    color: #fff;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    border-radius: 5px;
}

.final-warning h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

.final-warning p {
    color: #fff;
    margin: 0;
    opacity: 0.9;
}

/* Адаптивность */
@media (max-width: 768px) {
    .guide-page {
        padding: 20px 0;
    }
    
    .guide-header {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .guide-header h1 {
        font-size: 28px;
    }
    
    .guide-section {
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .guide-section h2 {
        font-size: 20px;
    }
    
    .step {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }
    
    .warning-box,
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .guide-header h1 {
        font-size: 24px;
    }
    
    .guide-subtitle {
        font-size: 16px;
    }
    
    .guide-section h2 {
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .final-warning {
        padding: 20px;
    }
    
    .final-warning h3 {
        font-size: 18px;
    }
}