        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: #f8f8f8;
            color: #333;
            font-size: 16px;
            line-height: 1.6;
        }

        .header {
            background: #fff;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid #ddd;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }

        .logo span {
            font-size: 32px;
            font-weight: bold;
            color: #333;
        }

        .contact-info {
            margin: 10px 0;
            font-size: 20px;
        }

        .phone {
            font-size: 24px;
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }

        .phone:hover {
            text-decoration: underline;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .order-call {
            background: #007bff;
            color: #fff;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: background-color 0.3s ease;
        }

        .order-call:hover {
            background: #0056b3;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .breadcrumb {
            padding: 15px;
            background: #ffffff;
            margin: 20px 0;
            border-radius: 5px;
            font-size: 18px;
            color: #888;
        }

        .notice {
            background: #fffbe6;
            padding: 15px;
            margin: 25px 0;
            border-left: 5px solid #ffb300;
            font-size: 16px;
            font-weight: 600;
            border-radius: 5px;
            color: #333;
        }

        .main-title {
            font-size: 38px;
            color: #333;
            text-align: center;
            margin: 40px 0;
        }

        .content-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            margin: 30px auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .brands {
            display: flex;
            justify-content: space-between;
            margin: 50px 0;
            flex-wrap: wrap;
        }

        .brand-logo {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .brand-logo:hover {
            transform: scale(1.1);
        }

        .prices {
            background: #fff;
            padding: 40px;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .price-item {
            font-size: 18px;
            margin: 15px 0;
        }

        .advantages {
            background: #fff;
            padding: 40px;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .advantage-item {
            font-size: 18px;
            margin: 10px 0;
            list-style-type: disc;
            padding-left: 20px;
        }

        .contacts {
            padding: 40px;
            background: #fff;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .contact-item {
            font-size: 18px;
            margin: 15px 0;
        }

        .bottom-buttons {
            display: flex;
            justify-content: space-around;
            padding: 20px;
            background: #fff;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }

        .bottom-button {
            padding: 15px 25px;
            text-align: center;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
        }

        .whatsapp {
            background: #25D366;
        }

        .call {
            background: #007bff;
        }

        .reviews {
            padding: 40px;
            background: #fff;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .review-item {
            margin: 20px 0;
        }

        .review-item p {
            font-size: 16px;
            line-height: 1.5;
        }

        .review-item .author {
            font-weight: bold;
            font-size: 18px;
            color: #007bff;
        }
		
		/* Основной стиль */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Заголовки */
h2, h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Стилизация списка */
ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

/* Элементы списка */
li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

/* Стилизация подзаголовков внутри списка */
li strong {
    color: #2980b9;
    font-weight: bold;
}

/* Добавляем отступы и линии между элементами списка */
li::before {
    content: '•';
    color: #2980b9;
    margin-right: 10px;
}

/* Увеличиваем отступы для текста, чтобы улучшить читаемость */
p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Стиль для ссылок */
a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Стилизация для блока с миссией */
.mission p {
    font-size: 16px;
    margin-top: 20px;
}

/* Стилизация для параграфов с описанием */
.service-description {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

/* Выделение блока с преимуществами */
.advantages {
    margin-top: 30px;
}

.advantages ul {
    padding-left: 20px;
}

.advantages li {
    margin-bottom: 10px;
}

/* Выделение блоков с заголовками */
h3 {
    color: #2c3e50;
    margin-top: 30px;
}

/* Добавление отступов и улучшение читаемости в списках */
ul {
    padding-left: 20px;
}

ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Стилизация кнопок (если они добавляются) */
button {
    padding: 10px 20px;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #3498db;
}

/* Респонсивность для мобильных устройств */
@media (max-width: 768px) {
    .service-description {
        padding: 20px;
        margin: 10px;
    }

    ul, li {
        padding-left: 15px;
        margin-bottom: 10px;
    }

    h2, h3 {
        font-size: 20px;
    }
}