body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

header {
  background-color: #283982; /* Replace with a color from your logo */
  color: white;
  padding: 20px 0;
  text-align: center;
}

.logo {
  width: 300px;
  display: block;
  margin: 0 auto;
}

h1 {
  margin: 10px 0;
}

main {
  padding: 20px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.box {
  background: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #283982; /* Replace with a color from your logo */
}

footer {
  background-color: #283982;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  height: 45px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}
