
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #e0e0e0;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #0F37A8;
}

.logo {
  height: 50px;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 5px 15px;
  font-weight: bold;
}

nav ul li a:hover {
  background-color: #969696;
  border-radius: 5px;
}

.flags img {
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
}

.hero {
  background: linear-gradient(145deg, #0F37A8, #000000);
  text-align: center;
  padding: 80px 20px;
  color: #ffffff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.button-group button {
  background-color: #969696;
  color: #000000;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 10px;
  cursor: pointer;
}

.button-group button:hover {
  background-color: #0F37A8;
  color: #ffffff;
}

.content {
  padding: 40px 30px;
  max-width: 1100px;
  margin: auto;
}

.content h2 {
  color: #2D699E;
  margin-bottom: 10px;
}

footer {
  background-color: #0F37A8;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 40px;
}

.flags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flags a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.flags a:hover {
  color: #cccccc;
}
html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header, footer {
  flex-shrink: 0;
  width: 95%;
}

main, .hero, .content {
  flex-grow: 1;
  width: 95%;
  box-sizing: border-box;
}

.content {
  padding: 40px 5%;
}

.hero {
  padding: 80px 5%;
  text-align: center;
}
.hero {
  background: url('cavalo.jpg') no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 80px 5%;
  color: white;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1,
.hero p {
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.9);
}

