/* General layout */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  background-color: #90d4d7;
  color: #222;
  text-align: center;
}

a {
  text-decoration: underline;
  color: #222;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Main content */
img.logo {
  max-width: 450px;
  height: auto;
  margin-bottom: 30px;
}

.main-text {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 30px;
}

h3 {
  margin-top: 40px;
  font-size: 22px;
  text-transform: uppercase;
}

.contact {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Footer styles */
.footer {
  background-color: #312d2c;
  padding: 25px 20px;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.footer img {
  max-height: 60px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer img:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 20px 0px 0px 0px;
  }

  img.logo {
    max-width: 90%;
  }

  .main-text,
  .contact {
    font-size: 16px;
  }

  h3 {
    font-size: 20px;
  }

  .footer-inner {
    gap: 20px;
  }

  .footer img {
    max-height: 50px;
  }
}
