    .uslugi-main-topic { display: none; }

    .service-page * {
        margin: 0; padding: 0;
        box-sizing: border-box;
        <!--font-family: 'Open Sans', sans-serif;-->
    }
    .service-container {
        width: 100%; max-width: 1200px;
        margin: 0 auto; padding: 0 20px;
    }
    .service-section { padding: 80px 0; }

    .service-page h1, .service-page h2, .service-page h3 {
        margin-bottom: 1.4rem; color: #2c3e50;
    }
    .service-page h1 { font-size: 2.5rem; color: #fff; }
    .service-page h2 {
        font-size: 3rem; text-align: center; margin-bottom: 3rem; position: relative;
    }
    .service-page h2::after {
        content: ''; position: absolute;
        bottom: -10px; left: 50%; transform: translateX(-50%);
        width: 80px; height: 3px; background-color: #8B0000;
    }

    .service-btnn {
        display: inline-block; padding: 12px 30px;
		font-size: 18px;
        background-color: #fff;
        border-radius: 5px; font-weight: bold;
        transition: all 0.3s ease; cursor: pointer;
    }
    .service-btnn:hover { background-color: #fefefe; transform: translateY(-2px); }

    .service-hero {
        background: linear-gradient(rgba(44,62,80,0.8), rgba(44,62,80,0.8)), url('service_back.jpg') center/cover no-repeat;
        color: white; text-align: center; padding: 120px 0 80px;
    }
    .service-hero h1 { font-size: 2.8rem; margin-bottom: 20px; }
    .service-hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; }

    .about-content { display: flex; align-items: center; gap: 50px; }
    .about-text { flex: 1; }
    .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .about-image img { width: 100%; height: auto; transition: transform 0.5s ease; }
    .about-image:hover img { transform: scale(1.05); }

    .service-services { background-color: #f8f9fa; }
    .services-grid {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
    }
    .service-card {
        background: white; padding: 30px; border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;
    }
    .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
    .service-icon { width: 90px; height: 90px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
    .service-icon img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
    .service-card:hover .service-icon img { opacity: 0.5; }

    .service-advantages { margin-top: -80px; background-color: white; }
    .service-tabs { display: flex; justify-content: center; margin-bottom: 40px; border-bottom: 1px solid #eee; }
    .tab-btn {
        padding: 20px 40px; background: none; border: none; font-size: 1.4rem; cursor: pointer;
        border-bottom: 3px solid transparent; transition: all 0.3s; font-weight: 600;
    }
    .tab-btn.active { border-bottom: 3px solid #8B0000; color: #8B0000; font-weight: bold; }
    .tab-btn:hover { color: #8B0000; }
    .tab-content { display: none; }
    .tab-content.active { display: block; animation: fadeIn 0.5s ease; }
    .advantages-list { list-style: none; columns: 2; column-gap: 40px; }
    .advantages-list li { margin-bottom: 15px; padding-left: 25px; position: relative; break-inside: avoid; font-size: 1.6rem; }
    .advantages-list li::before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: bold; }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }

    .service-partners { background-color: #f8f9fa; text-align: center; }
    .partners-slider { overflow: hidden; position: relative; padding: 20px 0; }
    .partners-track { display: flex; animation: scroll 30s linear infinite; }
    .partner-logo { flex: 0 0 auto; width: 150px; margin: 0 30px; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
    .partner-logo:hover { filter: grayscale(0%); opacity: 1; }
    .partner-logo img { max-width: 100%; height: auto; }
    @keyframes scroll { 0% { transform: translateX(0);} 100% { transform: translateX(calc(-150px * 9 - 30px * 18));} }

    /* Новый блок контактов */
    .service-contacts { background-color: white; font-size: 18px; }
    .contact-wrapper {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 50px; align-items: start;
    }
    .contact-card, .form-card {
        background: #f8f9fa; padding: 40px; border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .contact-card h3, .form-card h3 {
        font-size: 26px; margin-bottom: 25px; text-align: center; font-weight: 600;
    }
    .contact-info-list {
        list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px;
    }
    .contact-info-item {
        display: flex; align-items: flex-start; gap: 15px;
    }
    .contact-info-item .icon { font-size: 1.5rem; flex-shrink: 0; }
    .contact-info-item strong { display: block; font-weight: 600; margin-bottom: 3px; }
    .contact-info-item small { display: block; color: #555; margin-top: 2px; }
    .contact-link { color: #8B0000; text-decoration: none; font-weight: 500; }
    .contact-link:hover { text-decoration: underline; }

    .contact-actions {
        margin-top: 30px; display: flex; gap: 15px; flex-wrap: wrap; justify-content: center;
    }
    .action-btn {
        display: flex; align-items: center; gap: 8px;
        background: #8B0000; color: #fff !important;
        padding: 12px 25px; border-radius: 8px;
        font-weight: 600; transition: .3s;
    }
    .action-btn:hover { background: #A52A2A; }

    @media (max-width: 968px) {
        .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    }
	
	/* === ОСНОВНЫЕ СТИЛИ СТРАНИЦЫ === */
.printcontrol-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    <!--font-family: 'Open Sans', sans-serif;-->
}

.pc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-section {
    padding: 80px 0;
}

.pc-section.gray {
    background: #f8f9fa;
}

/* === HERO-СЕКЦИЯ === */
.pc-hero {
    background: linear-gradient(rgba(44,62,80,0.8), rgba(44,62,80,0.8)), url('service_back.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 0 80px;
}

.pc-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.pc-hero p {
    font-size: 1.3rem;
}

/* === ЗАГОЛОВКИ И ТЕКСТ === */
.pc-section h2 {
    font-size: 2.4rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
}

.pc-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #8B0000;
}

.pc-section p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
}

/* === ТИПЫ И СИСТЕМЫ === */
.pc-type {
    margin-bottom: 2rem;
}

.pc-type h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

.pc-systems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pc-system {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: .3s;
}

.pc-system:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pc-system h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

.pc-link {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
}

.pc-link:hover {
    text-decoration: underline;
}

/* === КОНТАКТНЫЙ БЛОК === */
.pc-contact {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 30px;
}

.pc-contact a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
}

.pc-contact a:hover {
    text-decoration: underline;
}

/* === ГИБКИЙ БЛОК С ТЕКСТОМ И ИЗОБРАЖЕНИЕМ === */
.pc-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.pc-text {
    flex: 1 1 500px;
}

.pc-img {
    flex: 0 0 400px;
    text-align: center;
}

.pc-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform .3s ease;
}

.pc-img img:hover {
    transform: scale(1.03);
}

/* === АДАПТИВ === */
@media (max-width: 900px) {
    .pc-flex {
        flex-direction: column;
        text-align: center;
    }
	.pc-text {
		flex: 0;
	}
    .pc-text h2 {
        text-align: center;
    }
    .pc-img {
        margin-top: 20px;
		margin: auto;
    }
	.pc-img:is(:first-child) {
		margin-bottom: -150px;
    }
}

@media (max-width: 768px) {
    .pc-section {
        padding: 60px 0;
    }
    .pc-section h2 {
        font-size: 2rem;
    }
    .pc-hero h1 {
        font-size: 2.2rem;
    }
}