:root {
            --primary-color: #4a6fa5;
            --secondary-color: #166088;
            --accent-color: #4fc3f7;
            --background-color: #f5f7fa;
            --card-color: #ffffff;
            --text-color: #333333;
            --border-radius: 12px;
            --box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            padding: 20px;
        }

        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px 0;
        }

        h1 {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        h2.section-title {
            color: var(--secondary-color);
            font-size: 2rem;
            margin: 50px 0 30px;
            text-align: center;
            position: relative;
        }

        h2.section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        h2.seo-title {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }

        .subtitle {
            color: var(--primary-color);
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 5px;
        }
		
		.update-date {
            color: var(--primary-color);
            font-size: 0.9rem;
            opacity: 0.7;
            font-style: italic;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        .company-card {
            background-color: var(--card-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .company-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            position: relative;
        }

        .card-header h2 {
            margin-bottom: 5px;
            font-size: 1.5rem;
        }

        .rating {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--accent-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .card-body {
            padding: 20px;
        }

        .info-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .info-item i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

        .info-label {
            font-weight: 600;
            color: var(--secondary-color);
            margin-right: 5px;
        }

        .website a {
            color: var(--accent-color);
            text-decoration: none;
            word-break: break-all;
        }

        .website a:hover {
            text-decoration: underline;
        }

        .description {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #e0e0e0;
            font-style: italic;
            color: #555;
        }

        /* Стили для блока отзывов */
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        .review-card {
            background-color: var(--card-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 25px;
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .review-company {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .review-author {
            font-style: italic;
            color: #666;
        }

        .review-text {
            color: #444;
            line-height: 1.7;
        }

        .review-rating {
            color: #ffc107;
            font-size: 1rem;
            margin-top: 10px;
        }

        /* Стили для SEO-блоков */
        .seo-section {
            max-width: 1200px;
            margin: 60px auto 0;
            background-color: var(--card-color);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .seo-content {
            margin-bottom: 40px;
        }

        .seo-content p {
            margin-bottom: 15px;
            line-height: 1.7;
            color: #444;
        }

        .seo-content ul {
            margin: 15px 0 15px 30px;
            color: #444;
        }

        .seo-content li {
            margin-bottom: 8px;
        }

        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: var(--primary-color);
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .container, .reviews-container {
                grid-template-columns: 1fr;
            }
            
            .seo-section {
                padding: 25px;
            }
        }
		
		
		/* Стили для блока статей */
.related-articles {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.article-card {
    background: var(--card-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: block;
    color: var(--text-color);
    text-decoration: none;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-card-content {
    padding: 20px;
}

.article-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.article-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.article-meta {
    color: #888;
    font-size: 0.8rem;
}

		/* Стили для хлебных крошек */

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #999;
}