* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  border-bottom: 1px solid #ddd;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
}

header img {
  width: 80px;
}

nav a {
  text-decoration: none;
  margin-left: 20px;
  color: #000;
  font-weight: 500;
}

.hero {
  background-color: #1486f8;
  color: white;
  padding: 40px 20px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  /* background-color: green; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 2.5em;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.1em;
}
.hero img.printer-top {
  width: 500px;
}
.input-box {
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: 10px;
}

.input-box input[type="text"] {
  padding: 14px 15px;
  width: 70%;
  min-width: 250px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  outline: none;
}

.input-box button {
  padding: 14px 20px;
  background: white;
  color: #0077c0;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  /* background-color: green; */
  display: flex;
  align-items: center;
  /* gap: 40px; */
}

.section-inner img {
  max-width: 500px;
  width: 100%;
  margin-top: 20px;
}
.section-inner p {
  font-size: 1.2em;
  margin-top: 20px;
}
.section-content a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}

footer {
  background-color: #1e1e1e;
}
.footer-inner {
  color: white;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 0px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section {
  flex: 1 1 300px;
  margin: 10px;
}

.footer-section h3 {
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 8px 0;
  font-size: 0.95em;
}

.footer-section input[type="text"] {
  padding: 10px;
  width: 80%;
  max-width: 250px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
}





.progress-container {
  padding: 20px;
  border-radius: 8px;
}

.progress-container h1 {
  margin-bottom: 30px;
}

.label {
  text-align: left;
  margin: 15px 0 5px;
  font-weight: bold;
}

.progress-bar {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.progress-bar-inner {
  height: 25px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0%;
  transition: width 0.2s linear;
}

.download {
  background: navy;
}

.install {
  background: green;
}
@media (max-width: 768px) {
  .hero img.printer-top {
    display: none;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  .input-box {
    flex-direction: column;
  }
  .input-box input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.8em;
  }
  .section-content {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
}
