body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.82),rgba(255,255,255,.82)),
    url("images/vitocal-miljo.jpg") center/cover fixed no-repeat;
  color:#1b2630;
  line-height:1.6;
}

header{
  background:rgba(255,255,255,.95);
  padding:16px 24px;
  box-shadow:0 4px 22px rgba(0,0,0,.18);
  position:sticky;
  top:0;
  z-index:10;
}

.topbar{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#0b3d5c;
  font-weight:bold;
  font-size:22px;
}

.brand img{
  height:55px;
  width:auto;
  box-shadow:none;
  border-radius:0;
}

nav a{
  margin-right:14px;
  color:#0b3d5c;
  text-decoration:none;
  font-weight:bold;
}

nav a:hover{
  color:#f47b20;
}

.hero{
  padding:60px 24px;
  color:white;
  text-align:center;
  background:
    linear-gradient(rgba(11,61,92,.70),rgba(11,61,92,.70)),
    url("images/vitocal-miljo.jpg") center/cover no-repeat;
}

.hero h1{
  color:white;
  font-size:48px;
  margin:0 auto 10px;
}

.hero p{
  font-size:22px;
  margin:0 auto;
}

.company-hero{
  font-size:64px !important;
  letter-spacing:1px;
  text-shadow:0 4px 18px rgba(0,0,0,.45);
}

.hero-subtitle{
  font-size:30px !important;
  font-weight:bold;
  margin:0 0 8px;
}

main{
  max-width:1200px;
  margin:20px auto;
  background:rgba(255,255,255,.94);
  padding:30px 40px;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}

h1,h2,h3{
  color:#0b3d5c;
}

p{
  max-width:900px;
}

ul{
  padding-left:24px;
}

li{
  margin-bottom:10px;
}

.btn,
.bottom-links a{
  display:inline-block;
  background:#f47b20;
  color:white;
  padding:13px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:bold;
  margin:6px 6px 6px 0;
}

.btn:hover,
.bottom-links a:hover{
  background:#d96512;
}

.intro-box,
.choice-box{
  background:linear-gradient(180deg,#f8fbfc,#e8f2f7);
  padding:36px;
  border-radius:18px;
  margin:35px 0;
  box-shadow:0 8px 25px rgba(0,0,0,.10);
}

.service-grid,
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:18px;
  margin:28px 0;
}

.service-grid div,
.info-grid div{
  background:#f4f7fa;
  border-left:5px solid #f47b20;
  padding:22px;
  border-radius:14px;
  font-weight:bold;
}

.product-block{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:38px;
  align-items:center;
  margin:38px 0 60px;
  padding:38px;
  border-radius:20px;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 30px rgba(0,0,0,.13);
}

.product-block img,
main img{
  max-width:100%;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.label{
  display:inline-block;
  background:#0b3d5c;
  color:white;
  padding:7px 14px;
  border-radius:999px;
  font-weight:bold;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:14px;
  margin-top:20px;
}

.gallery figure{
  margin:0;
  background:#fff;
  padding:8px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.16);
}

.gallery img{
  width:100%;
  height:110px;
  object-fit:cover;
  object-position:center;
  box-shadow:none;
  border-radius:10px;
}

.gallery figcaption{
  font-size:12px;
  color:#0b3d5c;
  font-weight:bold;
  padding-top:6px;
}

footer{
  text-align:center;
  padding:28px;
  background:#0b3d5c;
  color:white;
}

footer p{
  margin:0 auto;
}

@media(max-width:800px){
  .topbar{
    display:block;
  }

  .brand{
    margin-bottom:12px;
  }

  nav a{
    display:block;
    margin:8px 0;
  }

  main{
    margin:18px;
    padding:22px;
    border-radius:18px;
  }

  .intro-box,
  .choice-box,
  .product-block{
    padding:22px;
  }

  .hero{
    padding:60px 18px;
  }

  .hero h1{
    font-size:34px;
  }

  .company-hero{
    font-size:40px !important;
  }

  .hero-subtitle{
    font-size:22px !important;
  }

  .product-block{
    grid-template-columns:1fr;
  }

  .gallery img{
    height:100px;
  }
}