* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}
header {
  background-color: #1e3a5f;
  padding: 20px 10%;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 20px;
}
nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  background: url('../images/bj1.jpg') no-repeat center center / cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 10%;
}
.hero h2 {
  font-size: 48px;
  max-width: 800px;
}
.section {
  padding: 60px 10%;
}
.section h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1e3a5f;
}
.product {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin: 80px auto;
}
.product img {
  width: 100%;
  max-width: 300px;
  border-radius: 78px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.product .info {
  flex: 1;
  min-width: 280px;
}
.product .info p {
  margin-bottom: 20px;
  margin-top: 10px;
}
.download-btn {
  display: inline-block;
  background-color: #4a7bb7;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.download-btn:hover {
  background-color: #3a6aa0;
}
footer {
  background-color: #1e3a5f;
  color: #fff;
  text-align: center;
  padding: 30px 10%;
}
footer a {
  color: #a0cfff;
  text-decoration: none;
  margin: 0 10px;
}
footer p {
  margin-top: 10px;
  font-size: 16px;
}
.icon {
  height: 40px;
  width: auto !important;
  border-radius: 0 !important;
  margin-right: 10px;
}
#products .images {
  height: 400px;
}
#products .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
#products p {
  font-size: 1.2rem;
}
.section h2 {
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: #7a7b7e;
  margin-bottom: 3rem;
}
.feature-number {
  color: #3f8cff;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.feature-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.feature-box {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .product {
    flex-direction: column;
  }
  .product .info {
    text-align: center;
  }
  .hero h2 {
    font-size: 32px;
  }
  nav {
    font-size: 14px;
  }
}
.title-txt h2 {
  text-align: center;
  padding: 40px 0;
  font-size: 35px;
}
.title-txt p {
  line-height: 30px;
}
.title-txt strong {
  font-size: 23px;
}
@media (max-width: 400px) {
  header .container {
    justify-content: end;
  }
  .logo {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */