<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* РћР±С‰РёРµ СЃС‚РёР»Рё */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* РЁР°РїРєР° СЃР°Р№С‚Р° */
header {
    position: relative;
    color: white;
    background: #000;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 68px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text h1 {
    font-size: 24px;
    margin: 0;
}

.logo-text h1 .green {
    color: #4CAF50;
}

.logo-text h1 .white {
    color: white;
}

.logo-text .slogan {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    font-weight: normal;
}

/* Р‘СѓСЂРіРµСЂ-РјРµРЅСЋ */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* РќР°РІРёРіР°С†РёСЏ */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4CAF50;
}

.call-button {
    background: #4CAF50;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.call-button:hover {
    background: #45a049;
}

/* РљРЅРѕРїРєР° "РќР°РІРµСЂС…" */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, opacity 0.3s;
    z-index: 99;
}

#scrollToTop:hover {
    background-color: #45a049;
}

/* Р‘Р»РѕРє СЃСЂРѕС‡РЅРѕРіРѕ РІС‹Р·РѕРІР° */
.emergency-call {
    background: #ff5722;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.emergency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.emergency-call p {
    margin: 0;
    font-weight: bold;
}

.emergency-button {
    background: #fff;
    color: #ff5722;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.emergency-button:hover {
    background: #f1f1f1;
}

/* РћСЃРЅРѕРІРЅРѕР№ РєРѕРЅС‚РµРЅС‚ */
.main-content {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.main-content h1 {
    color: #333;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* РџСЂРµРґСѓРїСЂРµР¶РґР°СЋС‰РёР№ Р±Р»РѕРє */
.warning-box {
    display: flex;
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.warning-icon {
    margin-right: 15px;
    color: #ff9800;
    font-size: 24px;
}

.warning-text h3 {
    margin-top: 0;
    color: #ff9800;
}

.warning-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.warning-button:hover {
    background: #45a049;
}

/* Р‘Р»РѕРє РїСЂРµРёРјСѓС‰РµСЃС‚РІ */
.advantages-box {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.advantages-box h3 {
    text-align: center;
    margin-top: 0;
    color: #333;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.advantage-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.advantage-item i {
    font-size: 30px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.advantages-cta {
    text-align: center;
    margin-top: 20px;
}

.advantages-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
    transition: background 0.3s;
}

.advantages-button:hover {
    background: #45a049;
}

.advantages-button.secondary {
    background: #2196F3;
}

.advantages-button.secondary:hover {
    background: #0b7dda;
}

/* РЎРµРєС†РёСЏ РёРЅСЃС‚СЂСѓРјРµРЅС‚РѕРІ */
.tools-section {
    margin: 40px 0;
}

.tools-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.tools-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tools-list {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tools-list ul {
    padding-left: 20px;
}

.tools-list li {
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 30px;
}

.tools-list li i {
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.tools-note {
    flex: 1;
    min-width: 300px;
    background: #e3f2fd;
    border-left: 5px solid #2196F3;
    padding: 20px;
    border-radius: 8px;
    display: flex;
}

.note-icon {
    margin-right: 15px;
    color: #2196F3;
    font-size: 24px;
}

.note-button {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.note-button:hover {
    background: #0b7dda;
}

/* РџРѕС€Р°РіРѕРІР°СЏ РёРЅСЃС‚СЂСѓРєС†РёСЏ */
.steps-section {
    margin: 50px 0;
}

.steps-section h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.step {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
}

.step-number {
    background: white;
    color: #4CAF50;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    font-size: 20px;
}

.step-content {
    padding: 20px;
}

.step-content p {
    margin-bottom: 15px;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-warning {
    display: flex;
    align-items: center;
    background: #ffebee;
    border-left: 5px solid #f44336;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 5px;
}

.step-warning i {
    color: #f44336;
    margin-right: 10px;
    font-size: 20px;
}

.step-note {
    display: flex;
    align-items: center;
    background: #e8f5e9;
    border-left: 5px solid #4CAF50;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 5px;
}

.step-note i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 20px;
}

/* РџСЂРѕР±Р»РµРјС‹ РїРѕСЃР»Рµ СЂРµРјРѕРЅС‚Р° */
.problems-section {
    margin: 50px 0;
}

.problems-section h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.problem-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
}

.problem-icon {
    margin-right: 15px;
    font-size: 24px;
    color: #f44336;
}

.problem-content h3 {
    margin-top: 0;
    color: #333;
}

.problems-cta {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.problems-cta h3 {
    margin-top: 0;
    color: #333;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button.primary {
    background: #4CAF50;
    color: white;
}

.cta-button.primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: #2196F3;
    color: white;
}

.cta-button.secondary:hover {
    background: #0b7dda;
    transform: translateY(-2px);
}

/* РўР°Р±Р»РёС†Р° С†РµРЅ */
.pricing-section {
    margin: 50px 0;
}

.pricing-section h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-header {
    background: #4CAF50;
    color: white;
    font-weight: bold;
}

.pricing-header, .pricing-row {
    display: flex;
}

.pricing-column {
    padding: 15px;
    flex: 1;
    text-align: left;
}

.pricing-row {
    border-bottom: 1px solid #eee;
}

.pricing-row:last-child {
    border-bottom: none;
}

.price-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.price-button:hover {
    background: #45a049;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.pricing-note i {
    color: #2196F3;
    margin-right: 5px;
}

.pricing-note a {
    color: #2196F3;
    text-decoration: none;
}

/* РћС‚Р·С‹РІС‹ */
.reviews-section {
    margin: 50px 0;
}

.reviews-section h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.review-stars {
    color: #ffc107;
}

.review-date {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.reviews-button {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.reviews-button:hover {
    background: #0b7dda;
}

/* FAQ */
.faq-section {
    margin: 50px 0;
}

.faq-section h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA СЃРµРєС†РёСЏ */
.cta {
    position: relative;
    background: #4CAF50;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    margin: 40px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.cta-form input,
.cta-form select {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.cta-form button {
    padding: 15px;
    background-color: #fff;
    color: #4CAF50;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cta-form button:hover {
    background-color: #f1f1f1;
    color: #45a049;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

.cta-note a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.cta-note a:hover {
    color: #f1f1f1;
}
/* РђРґР°РїС‚Р°С†РёСЏ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .burger-menu {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px;
        border-radius: 5px;
    }

    nav ul li {
        margin: 5px 0;
    }

    .emergency-content {
        flex-direction: column;
        gap: 10px;
    }

    .tools-container {
        flex-direction: column;
    }

    .pricing-header, .pricing-row {
        flex-direction: column;
    }

    .pricing-column {
        padding: 10px;
    }

    .location-container {
        flex-direction: column;
    }

    .location-map {
        height: 250px;
    }
}
/* РЎС‚РёР»Рё РґР»СЏ Р±Р»РѕРєР° РјРѕРґРµР»РµР№ */
.models-section {
    margin: 50px 0;
}

.models-section h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.model-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.model-header {
    position: relative;
}

.model-header h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    margin: 0;
    padding: 15px;
    font-size: 22px;
}

.model-content {
    padding: 20px;
}

.model-content ul {
    padding-left: 20px;
}

.model-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.model-content li:before {
    content: "вЂў";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.model-price {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.model-price p {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.model-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.model-button:hover {
    background: #45a049;
}

.models-note {
    background: #e3f2fd;
    border-left: 5px solid #2196F3;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.models-note i {
    color: #2196F3;
    margin-right: 10px;
}
/* РЎС‚РёР»Рё РґР»СЏ С‚РёРїРѕРІ РґРёСЃРїР»РµРµРІ */
.display-types {
    margin: 50px 0;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.display-types h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.type-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.type-icon {
    font-size: 30px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.type-card h3 {
    margin-top: 0;
    color: #333;
}

.type-card ul {
    padding-left: 20px;
}

.type-card li {
    margin-bottom: 8px;
}

.type-recommend {
    background: #e8f5e9;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 14px;
}

.type-cta {
    text-align: center;
    margin-top: 30px;
}

.type-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.type-button:hover {
    background: #45a049;
}
/* РЎС‚РёР»Рё РґР»СЏ Р±Р»РѕРєР° С‡Р°СЃС‚С‹С… РїСЂРѕР±Р»РµРј */
.common-issues {
    margin: 50px 0;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.common-issues h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.issue-tabs {
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 15px;
    background: #f5f5f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.tab-button.active {
    background: #4CAF50;
    color: white;
}

.tab-button:hover:not(.active) {
    background: #e0e0e0;
}

.tab-content {
    display: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    padding-left: 20px;
}

.tab-content li {
    margin-bottom: 10px;
}

.issue-solution {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 5px solid #2196F3;
}

.issue-cta {
    text-align: center;
    margin-top: 30px;
}

.issue-button {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.issue-button:hover {
    background: #0b7dda;
}</pre></body></html>