* { margin: 0; padding: 0; box-sizing: border-box; }
body, html {

  height: 100%;
  background-color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  
}
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 20px;
  padding-top: 0;
}
.banner img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 0px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden;
  white-space: nowrap;
}

.buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;

}
.buttons a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  background: rgba(255,255,255,0.8);
  color: #0094dd;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.buttons a:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.buttons img.flag {
  width: 50px;
  height: auto;
}

footer {
  text-align: center;
  padding: 10px;

  color: #333;
font-size: 15px;
font-style: italic;
}

@media (min-width: 2500px) {
  .banner img {
    
      max-height: 700px;

    }
    .buttons a {
      font-size: 26px;
    }
}

@media (min-width: 2000px) {
    .banner img {
      
        max-height: 650px;

      }
      .buttons a {
        font-size: 23px;
      }
}

@media (max-width: 1500px) {
  .banner img {
      
    max-height: 400px;

  }
}

@media (max-width: 1000px) {
  .hero h1 { font-size: 2.5rem; }
  .buttons a { padding: 8px 16px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .buttons a { flex: 1 1 100%; justify-content: center; }
  .buttons a:hover {
    background: rgba(255,255,255,0.8);
    transform: translateY(0px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
}