/* Адаптивный стиль под мобильные устройства */
body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  padding: 20px;
}

.logo {
  max-width: 300px;
  height: auto;
}

h1 {
  color: #2c6700;
}

p {
  font-size: 18px;
  color: #333;
}

.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #2c6700;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #245700;
}

.products {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.product-gallery img:hover {
  transform: scale(1.03);
}

/* Адаптив */
@media (max-width: 768px) {
  .product-gallery img {
    height: 160px;
  }
}


/* Блок загрузки */
.download-section {
  padding: 40px 20px;
  background-color: #f2f2f2;
}
.download-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.download-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}
.download-item:hover {
  transform: translateY(-5px);
}
.download-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.download-item a {
  display: inline-block;
  background-color: #004aad;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.download-item a:hover {
  background-color: #003a85;
}

