* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #666666;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
}

h1 {
  text-align: center;
}

header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px 9%;
  background: #ffffff;
  color: #1e1e1e;
  text-align: left;
}

@media (max-width: 600px) {
  header{
	flex-direction: column;
    align-items: center;
}}

footer {
  padding: 20px;
  background: #ffffff;
  color: #1e1e1e;
  text-align: left;
}

.logo-1 {
  padding: 0px 10px;
}

.logo-1 img {
display: flex;
  justify-content: flex-start;
  max-width: 250px;
  width: 100%;
  height: auto;
}

.logo-2 {
  padding: 0px 10px;
}

.logo-2 img {
display: flex;
  justify-content: flex-end;
  max-width: 250px;
  width: 100%;
  height: auto;
}

.top-paragraph {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 15% 0px 15%;
  text-align: center;
}

.bottom-paragraph {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0px 15% 0px 15%;
  text-align: center;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 10%;
}

.column {
  flex: 1;
  padding: 10px;
  min-width: 300px;
}

.column img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 10px;
}

.btn-link {
  display: block;
  width: 50%;
  padding: 20px;
  margin: 0px auto;
  background-color: #009ee2;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
}

.btn-link:hover {
  background-color: #147dbe;
}

footer {
  text-align: center;
  color: #666666;
}


@media (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .column img {
    max-width: 90%;
  }

  .logo img {
    width: 100% !important;
  }

  .btn-link {
    width: 80%;
  }
}


    .image-grid {
	  width: 70%;
	  margin:0px auto;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
	  align-items: center;
    }

    .image-grid img {
      width: calc(25% - 10px);
      height: auto;
    }

    @media (max-width: 600px) {
      .image-grid img {
        width: calc(50% - 10px);
      }
    }
	
	
	    @media (max-width: 600px) {
    .image-grid {
	  width: 90%;
      }
    }