header {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 70px;
  font-weight: bold;
  color: #0081c1;
  margin-bottom: 10px;
}

header img {
  width: 20%; /* adjust the width to 20% of the parent element */
  max-width: 150px; /* set a maximum width of 100px */
  height: auto; /* set the height to auto to maintain the aspect ratio */
  margin-right: 10px; /* add some margin to the right of the logo */
  vertical-align: middle; /* center the logo vertically */
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  clear: both;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  width: 40%;
  padding: 20px;
}

.footer-right {
  width: 60%;
  padding: 20px;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left li {
  margin-bottom: 10px;
}

.footer-left a {
  text-decoration: none;
  color: #0081c1;
}

.footer-left a:hover {
  color: #00698f;
}

.footer-right iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* Styles for desktop devices */
@media only screen and (min-width: 1025px) {
  header h1 {
    font-size: 70px;
  }
}

/* Styles for tablet devices */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header h1 {
    font-size: 50px;
  }
  .footer-container {
    flex-direction: row;
  }
  .footer-left {
    width: 50%;
    padding: 20px;
  }
  .footer-right {
    width: 50%;
    padding: 20px;
  }
  .footer-right iframe {
    height: 250px;
  }
}

/* Styles for mobile devices */
@media only screen and (max-width: 768px) {
  header h1 {
    font-size: 25px;
  }
  header img {
    width: 15%; /* adjust the width to 20% of the parent element */
    max-width: 100px; /* set a maximum width of 100px */
    height: auto; /* set the height to auto to maintain the aspect ratio */
    margin-right: 10px; /* add some margin to the right of the logo */
    vertical-align: middle; /* center the logo vertically */
  }
  .footer-container {
    flex-direction: column;
  }
  .footer-left {
    width: 100%;
    padding: 20px;
  }
  .footer-right {
    width: 100%;
    padding: 20px;
  }
  .footer-right iframe {
    height: 200px;
  }
}