/* Reset basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #daecf3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 700px;
  width: 100%;
}

.logo {
  width: 180px;
  margin: 0 auto 20px;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 16px;
  color: #555;
  margin: 5px 0;
}

.contact-details a {
  color: #0073e6;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.image-gallery {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.image-gallery img {
  width: 48%;
  height: auto;
  border-radius: 8px;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
  .image-gallery {
    flex-direction: column;
    align-items: center;
  }

  .image-gallery img {
    width: 100%;
    margin-bottom: 10px;
  }
}
