
    :root {
        --text-color: #333;
        --border-color: #eee;
        --accent-color: #000;
    }

    .specification {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: var(--text-color);
        padding: 40px 20px;
        max-width: 1000px;
        margin: 0 auto;
		padding-top: 160px;
		padding-bottom: 50px;
    }

    .specification h1 {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .spec-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }

    /* Заголовки колонок */
    .spec-table thead th {
        padding: 15px;
        text-align: center;
        font-weight: 500;
        border-bottom: 1px solid var(--border-color);
        width: 20%;
    }

    .spec-table thead th:first-child {
        width: 40%;
    }

    /* Названия категорий (Клееный брус и т.д.) */
    .section-title td {
        font-size: 24px;
        font-weight: 500;
        padding: 40px 0 20px 0;
        text-align: left;
    }

    /* Строки таблицы */
    .spec-table tbody tr td {
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-color);
    }

    /* Первый столбец с текстом */
    .spec-table tbody tr td:first-child {
        text-align: left;
        color: #555;
    }

    /* Столбцы с данными (+, -, размеры) */
    .spec-table tbody tr td:not(:first-child) {
        text-align: center;
        vertical-align: middle;
    }

    /* Адаптивность для мобильных */
    @media (max-width: 768px) {
        .specification h1 { font-size: 24px; }
        .section-title td { font-size: 18px; }
        .spec-table { display: block; overflow-x: auto; }
        .spec-table td, .spec-table th { min-width: 120px; font-size: 12px; }
    }
	
	.spec-button {
		display: inline-flex;
		align-items: center;
		margin-top: 30px;
		padding: 12px 20px;
		background-color: #bc0f10;
		color: #333;
		text-decoration: none;
		border-radius: 4px;
		font-size: 14px;
		transition: background 0.3s;
	}
	
	.spec-button:hover {
		background-color: #a10506;
	}

	.spec-button .arrow {
		margin-left: 10px;
		font-size: 18px;
	}
	
	.section-title{
		background-color: #333;
	}
	
	.section-title td{
		color: #fff !important;
	}
