        /* Подключаем те же базовые стили, что и на главной блога */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f7f2;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Шапка статьи */
        .article-header {
            background: linear-gradient(rgba(60, 40, 20, 0.85), rgba(40, 25, 10, 0.95)), 
                        url('https://images.unsplash.com/photo-1570469127801-ada2302e9f10?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .article-header h1 {
            font-size: 2.8em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .article-meta {
            font-size: 1.1em;
            opacity: 0.9;
        }
        
        /* Основной контент */
        .article-content {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 50px;
        }
        
        .article-content h2 {
            font-size: 2em;
            color: #4a3628;
            margin: 40px 0 20px;
            border-bottom: 3px solid #8b6b4d;
            padding-bottom: 10px;
        }
        
        .article-content h3 {
            font-size: 1.5em;
            color: #5d3f2b;
            margin: 30px 0 15px;
        }
        
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1em;
        }
        
        .article-content ul, .article-content ol {
            margin: 20px 0 30px 30px;
        }
        
        .article-content li {
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        /* Таблица сравнения */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background: #f9f7f2;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .comparison-table th {
            background: #4a3628;
            color: white;
            padding: 15px;
            font-size: 1.2em;
            text-align: center;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
            vertical-align: top;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table td:first-child {
            font-weight: bold;
            background: #efebe6;
            width: 25%;
        }
        
        .feature-good {
            color: #2e7d32;
            font-weight: 500;
        }
        
        .feature-bad {
            color: #c62828;
            font-weight: 500;
        }
        
        .feature-neutral {
            color: #f57c00;
            font-weight: 500;
        }
        
        /* Блоки с породами */
        .wood-block {
            display: flex;
            gap: 30px;
            margin: 40px 0;
            padding: 30px;
            background: #f5f2ec;
            border-radius: 15px;
            border-left: 8px solid;
        }
        
        .wood-block.linden {
            border-left-color: #8bc34a;
        }
        
        .wood-block.aspen {
            border-left-color: #ffb74d;
        }
        
        .wood-block.pine {
            border-left-color: #ff8a65;
        }
        
        .wood-image {
            flex: 1;
            min-width: 200px;
            height: 200px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .wood-description {
            flex: 2;
        }
        
        .wood-description h3 {
            margin-top: 0;
        }
        
        /* Важное предупреждение */
        .warning-box {
            background: #fff3e0;
            border-left: 6px solid #ff6f00;
            padding: 25px;
            margin: 40px 0;
            border-radius: 10px;
        }
        
        .warning-box strong {
            color: #bf360c;
            font-size: 1.2em;
        }
        
        /* Калькулятор - блок призыва */
        .calculator-cta {
            background: linear-gradient(135deg, #2c3e50, #1a2634);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0 30px;
            text-align: center;
        }
        
        .calculator-cta h3 {
            color: white !important;
            border: none !important;
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .calculator-cta p {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .calc-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #8b6b4d;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background-color: #a88665;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid #8b6b4d;
			cursor: pointer;
        }
        
        .btn-outline:hover {
            background: #8b6b4d;
        }
        
        /* Навигация */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            padding-top: 30px;
            border-top: 2px solid #ddd;
        }
        
        .nav-link {
            text-decoration: none;
            color: #4a3628;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: #8b6b4d;
        }
        
        .nav-link.prev::before {
            content: "← ";
        }
        
        .nav-link.next::after {
            content: " →";
        }
        
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2em;
            }
            
            .article-content {
                padding: 25px;
            }
            
            .wood-block {
                flex-direction: column;
            }
            
            .comparison-table {
                font-size: 0.9em;
            }
            
            .calc-buttons {
                flex-direction: column;
            }
        }