/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', monospace; /* Техничный шрифт для текста */
    line-height: 1.6;
    background: #ffffff; /* Белый фон */
    color: #333333; /* Тёмный текст */
    font-size: 14px; /* Уменьшили размер текста */
}

/* Контейнер для контента */
.container {
    max-width: 1200px; /* Максимальная ширина контента */
    margin: 0 auto; /* Центрирование контейнера */
    padding: 0 20px; /* Отступы слева и справа */
}

/* Шапка */
header {
    background: #f9f9f9; /* Светлый фон */
    padding: 15px 0;
    border-bottom: 2px solid #e0e0e0; /* Серая рамка */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333333; /* Тёмный текст */
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #474747; /* Синий цвет при наведении */
}

/* Первый блок: Заголовок и описание */
.hero-block {
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
}

.hero-block h1 {
    font-family: 'Russo One', sans-serif; /* Шрифт для заголовка */
    font-size: 2.5em; /* Крупный заголовок */
    margin-bottom: 20px;
    color: #222222; /* Тёмный цвет */
}

.hero-block p {
    font-size: 1em;
    color: #555555; /* Серый текст */
    margin-bottom: 30px;
}

/* Кнопки */
.button {
    display: inline-block;
    padding: 12px 30px;
    background: #000000; /* Чёрный фон */
    color: #ffffff; /* Белый текст */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #000000; /* Чёрная рамка */
}

.button:hover {
    background: #333333; /* Тёмно-серый фон */
    border-color: #333333; /* Тёмно-серый цвет рамки */
}

/* Блок услуг */
.services {
    background: #f9f9f9; /* Светлый фон */
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e0e0e0; /* Серая рамка */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Тень */
    margin: 20px 0;
}

.services h2 {
    font-family: 'Russo One', sans-serif; /* Шрифт для заголовка */
    margin-bottom: 10px;
}

.services ul {
    list-style: none;
    padding-left: 20px;
}

.services li {
    margin-bottom: 10px;
    color: #555555; /* Серый текст */
    position: relative;
    font-size: 0.9em;
}

.services li::before {
    content: "•";
    color: #000000; /* Чёрный маркер */
    margin-right: 10px;
}

/* Блок "О нас" */
.about {
    background: #f9f9f9; /* Светлый фон */
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e0e0e0; /* Серая рамка */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Тень */
    margin: 20px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Russo One', sans-serif; /* Шрифт для заголовка */
    margin-bottom: 10px;
}

.about-text p {
    color: #555555; /* Серый текст */
    line-height: 1.6;
    font-size: 0.9em;
}

.about img {
    width: 400px;
    height: auto;
    border-radius: 15px;
}

/* Блок с особенностями */
.features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    flex: 1;
    background: #f9f9f9; /* Светлый фон */
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e0e0e0; /* Серая рамка */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Тень */
}

.feature-item h3 {
    font-family: 'Russo One', sans-serif; /* Шрифт для заголовка */
    margin-bottom: 10px;
}

.feature-item p {
    color: #555555; /* Серый текст */
    font-size: 0.9em;
}

/* Футер */
footer {
    background: #f9f9f9; /* Светлый фон */
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e0e0e0; /* Серая рамка */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Тень */
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer img {
    width: 180px;
    height: auto;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .about-content {
        flex-direction: column;
    }

    .about img {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .features {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    footer img {
        width: 100%;
        max-width: 200px;
        margin-bottom: 20px;
    }
}
