/* Общие стили */
body {
    background: url("https://www.servis.promservisxol.dp.ua/images/headers/background.jpg") no-repeat center center fixed, 
                linear-gradient(to bottom, #f8f9fa, #e3f2fd); /* Градиент + картинка */
    background-size: cover;
    color: #333; /* Темно-серый текст */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Заголовки */
h1, h2, h3 {
    color: #FFFAFA;
}

/* Ссылки */
a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #FFFAFA;
    text-decoration: underline;
}

/* Таблицы */
table {
    width: 100%;
    background: #ffffff;
    border-collapse: collapse;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

td {
    padding: 15px;
    border: 1px solid #ddd;
}

/* Изображения */
img {
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Кнопки */
button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}