* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Настройки фонового изображения */
    background-image: url('фон.jpg'); /* Укажите путь к вашему изображению */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* Добавляем полупрозрачный фон для контента */
    background: rgba(255, 255, 255, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    /* Цвет металлик (серебристый оттенок) */
    color: #c0c0c0;
    /* Добавляем градиент для эффекта металлика */
    background: linear-gradient(45deg, #a1a1a1, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: bold;
}

h2 {
    font-size: 1.8em;
    margin: 30px 0 20px;
}

p {
    margin-bottom: 15px;
}

.services {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.services li {
    background: #f8f9fa;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

nav {

.equipment-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.gallery-item {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .gallery-item {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100px;
        height: 80px;
    }
}

