body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000; /* запасной цвет фона */
}

/* 🔶 HEADER с золотым фоном */
.header {
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 80px 20px;
  text-shadow: 1px 1px 3px black;
}

/* 🔷 CONTENT блок с логистическим фоном */
.content-background {
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 0;
}

/* 📃 Секции с прозрачностью */
section {
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);;
  border-radius: 10px;
 /* backdrop-filter: blur(5px); /* лёгкое размытие */
}

/* 🔗 Навигация */
nav {
  background-color: transparent;
  padding: 10px 20px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

/* 🧩 Сервисы */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.services div {
  background: white;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 350px;
}

.services img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

/* ✉️ Контактная форма */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

form input, form textarea, form button {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  font-size: 16px;
}

/* ☎️ Контактная инфа */
.contact-info {
  text-align: center;
  margin-top: 20px;
}

/* 📜 Футер */
footer {
  background-color: rgba(0,0,0,0.7);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* 📱 Адаптивность */
@media (max-width: 992px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 60px 15px;
  }

  nav a {
    display: inline-block;
    margin: 0 10px;
  }
}
