* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  background: #f7f7f7;
  overflow: hidden;
}

.hero-content {
  padding: 70px 45px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-content h1 span {
  display: block;
  color: #f05a00;
}

.hero-content p {
  margin: 25px 0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.btn {
  display: inline-block;
  background: #f05a00;
  color: #fff;
  padding: 16px 30px;
  border-radius: 5px;
  font-weight: bold;
}

.hero-image {
  background: linear-gradient(135deg, transparent 35%, #f05a00 35%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 90%;
}

.about-offer {
  display: grid;
  grid-template-columns: 60% 40%;
  padding: 35px 45px;
  gap: 50px;
  border-bottom: 1px solid #ddd;
}

h2 {
  color: #f05a00;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-box p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.offer-box {
  border-left: 1px solid #bbb;
  padding-left: 55px;
}

.offer-item {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.sectors {
  display: grid;
  grid-template-columns: 220px repeat(7, 1fr);
  align-items: center;
  padding: 25px 45px;
  border-bottom: 1px solid #ddd;
}

.sector-title h2 {
  line-height: 1;
}

.sector-title p {
  font-size: 13px;
}

.sector-item {
  text-align: center;
  color: #f05a00;
  font-size: 36px;
  border-left: 1px solid #ccc;
  padding: 10px;
}

.sector-item span {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  margin-top: 10px;
}

.vision-mission {
  display: grid;
  grid-template-columns: 50% 50%;
  color: #fff;
}

.vision {
  background: #f05a00;
  padding: 55px 80px;
}

.vision h2,
.mission h2 {
  color: #fff;
}

.vision p,
.mission p {
  font-size: 16px;
  line-height: 1.6;
}

.mission {
  background: #111820;
  padding: 55px 80px;
}

.mission p {
  margin-bottom: 14px;
}

.products {
  padding: 20px 35px;
  text-align: center;
}

.products h2 {
  color: #f05a00;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.product-card {
  border: 2px solid #f05a00;
  padding: 15px;
}

.product-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 15px;
  margin-top: 10px;
}

.contact-strip {
  display: grid;
  grid-template-columns: 45% 55%;
  background: #f05a00;
  color: #fff;
}

.contact-info {
  padding: 35px 80px;
}

.contact-info h2 {
  color: #fff;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thank-you {
  background: #111820;
  color: #fff;
  text-align: center;
  padding: 25px;
}

.thank-you h2 {
  color: #fff;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .hero,
  .about-offer,
  .vision-mission,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .sectors {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 42px;
  }
}