.galerie{
    background-color: #f8fafc;
    padding-top: 60px;
    padding-bottom: 70px;
}

.galierie-pics{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 70px;
}

.galerie-card{
    width: 25%;
    height: auto;
    transition: 0.1s ease-in;
}

.galerie-card:hover{
    transform: translateY(10px);
}

.galerie-card img{
    width: 100%;
    height: 100%;
    border: 12px solid #fff;
    border-radius: 16px;
}

.footer {
  background: #0e74ff;
  color: #fff;
  text-align: center;
  padding: 80px 20px 30px;
  font-family: Inter, sans-serif;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111b34;
}

.footer p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 40px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer a{
    text-decoration: none;
    color: #fff;
}


@media (max-width: 500px){
    .galierie-pics{
        flex-direction: column;
    }

    .galerie-card{
        width: 80%;
        height: auto;
        margin-bottom: 20px;
}
}