/* Общий сброс стилей */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d7e9f7, #b4e4c6); /* Светлые тона */
    color: #333; /* Тёмно-серый текст */
}

/* Стиль для блока с содержимым */
.container {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); /* Белый полупрозрачный фон */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Логотип */
.logo img {
    max-width: 150px;
    margin-bottom: 0px;
}

/* Заголовок */
h1 {
    font-size: 2em;
    color: #2c3e50; /* Тёмно-синий */
    margin-bottom: 10px;
}

/* Описание */
p {
    font-size: 1.2em;
    margin: 5px 0;
    color: #555; /* Серый текст */
}

/* Ссылки */
a {
    color: #3498db; /* Голубой */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d70a2; /* Темнее при наведении */
}

/* Убираем стиль ссылки для телефона */
.phone-link {
    color: inherit; /* Наследуем цвет текста */
    text-decoration: none; /* Убираем подчёркивание */
    cursor: pointer; /* Стандартный указатель мыши */
}

/* Стили для ссылок на прайс-листы */
.links a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #4CAF50; /* Зеленый фон */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.links a:hover {
    background-color: #45a049; /* Темнее при наведении */
}

/* Стиль для страницы 404 */
.error-page {
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: #333;
}

.error-page h1 {
    font-size: 5em;
    color: #e74c3c;
    margin-bottom: 10px;
}

.error-page p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.error-page .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.error-page .btn:hover {
    background-color: #2980b9;
}

