body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #1e1e1e;
  color: #f0f0f0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

a {
  color: #a259ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2 {
	text-transform: uppercase;
	font-size: 1.3em;
}

.hero {
  background:
	linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.1) 100%
  ),
  url('banner4.jpg') center/cover no-repeat, #111;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 1px solid #333;
  color: #f0f0f0;
  position: relative;
  display:flex;
  align-items:center;
}

.hero h1 {
  font-size: 2em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6), 0 0 9px rgba(0, 0, 0, 0.6);
}

.hero p {
	font-size: 1.4em;
	text-shadow: 0 0 5px rgba(0, 0, 0, 1), 0 0 6px rgba(0, 0, 0, 1);
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.5em;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 400px; /* Увеличенная высота на широких экранах */
    padding: 100px 20px;
  }
}

@media (min-width: 2000px) {
  .hero {
    min-height: 600px; /* Увеличенная высота на широких экранах */
    padding: 100px 20px;
  }
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 0px;
}

.icon-box {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.icon-box:hover {
  transform: translateY(-4px);
}

.icon-box svg {
  margin-bottom: 10px;
}

.icon-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: bold;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.icon-box svg {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.link-box {
  display: block;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #333;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}

.link-box:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: #555;
  background:#3c3c3c;
}

.link-box h3 {
  color: #ffffff;
}

.link-box a {
  display: inline-block;
  margin-top: 10px;
  color: #a259ff;
  font-weight: bold;
}

.link-box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.link-box a img:hover {
  transform: scale(1.05);
}

.link-box :hover {
	
}

@media (max-width: 600px) {
  .hero {
    padding: 30px 15px;
  }

  .icon-box {
    padding: 15px;
  }

  .icon-box svg {
    width: 32px;
    height: 32px;
  }

  .icon-box p {
    font-size: 0.9rem;
  }
}

.footer {
  background-color: #111;
  padding: 0px 20px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer a {
  color: #a259ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}


.hero {
  margin-bottom: 40px;
}

.icons {
  margin-top: 0;
  margin-bottom: 40px;
}

.links {
  margin-top: 0;
}

.footer {
  margin-top: 40px;
}

img[src*="tekmart.png"],
img[src*="vacuumwb.png"] {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 10px auto 0;
}

.card-btn {
  display: inline-block;
  background: #6633cc;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: background 0.3s;
}

.card-btn:hover {
  background: #7f6bf4;
}