body, html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  text-align: left;
  margin: 50px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

* {
  box-sizing: border-box;
}

header {
  background: linear-gradient(to right, #4169e1, #191970);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  width: 100%;
}

.head {
  color: #fff8dc;
  text-shadow: 1px 1px 0px #999,
    2px 2px 0px #888,
    3px 3px 0px #777,
    4px 4px 0px #666;
  font-weight: bold;
}

h1,
h2,
h3 {
  color: #004d99;
  font-weight: bold;
}

h2 {
  border-bottom: 3px solid #007bff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 18px;
  margin-bottom: 15px;
}

section {
  padding: 30px;
  align-items: center;
  text-align: center;
  background: white;
  justify-content: center;  width: 100%;
  width: auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

section:hover {
  transform: translateY(-5px);
}

#hero {
  background: linear-gradient(to right, #e3f2fd, #ffffff);
  padding: 60px 20px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.cta {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s, transform 0.2s;
}

.cta:hover {
  background: #cc5500;
  transform: scale(1.05);
}

.solution-box {
  display: inline-block;
  width: 45%;
  margin: 15px;
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.solution-box:hover {
  transform: translateY(-8px);
}

.solution-box img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

footer {
  background: #004d99;
  color: white;
  text-align: center;
  width: 100%;
  padding: 15px;
  margin-top: 30px;
  font-size: 16px;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .cta {
    font-size: 16px;
    padding: 10px 20px;
  }

  .solution-box {
    width: 90%;
    display: block;
    margin: 20px auto;
  }
}