html,
body {
  background-color: #EEEEEE;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

header {
  background-color: #3c3ba6;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

header img {
  width: 150px;
  margin-bottom: 10px;
}

.container {
  padding: 20px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

.intro,
.section {
  margin: 20px 0;
}

.section h2 {
  margin-bottom: 20px;
  color: #39f;
}

.products,
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 600px;
}

.product,
.service {
  background-color: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
  border-top: 3px solid #39f;
  max-width: 580px;
}

.product {
  display: flex;
}

.product img,
.service img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-right: 20px;
}

.product img {
  width: 100px;
}

.product h3,
.service h3 {
  margin-top: 0;
  color: #615EFC;
}

a {
  color: #a6b2e9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #3c3ba6;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

img {
  pointer-events: none;
}

.img-container {
  text-align: center;
}

@media (min-width: 800px) {

  .services,
  .products {
    max-width: unset;
  }

  .product,
  .service {
    max-width: calc(50% - 40px);
  }
}