body {
  font-family: "Rubik", sans-serif;
  font-size: 1.1em;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

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

.logo-container {
  flex: 0 0 auto;
}

.logo {
  height: 70px;
  width: auto;
}

.language-selector {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #333;
}

.language-selector .lang {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
  font-size: 0.9rem;
}

.language-selector .lang:hover {
  color: #f68eca;
}

.language-selector .active-lang {
  color: #d71285;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  margin: 0 15px;
}

nav a.active {
  color: #d71285;
}

nav a:hover {
  color: #f68eca;
}

.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  color: #d71285;
}

.lang-btn {
  width: 250px;
  padding: 18px 0;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: transparent;
  color: #007bff;
  border: 3px solid #007bff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Rubik", sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.lang-btn:hover {
  background-color: #007bff;
  color: white;
}

.upper-section {
  background-color: #ffffff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lower-section {
  background-color: #ffffff;
  height: 219px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  background-color: #333;
  color: white;
  padding: 15px 20px;
}

.footer-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons {
  position: absolute;
  left: 20px;
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 20px;
  height: auto;
}

copyright {
  text-align: center;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.cookie-buttons button {
  margin: 0 5px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#accept-cookies {
  background-color: #4caf50;
  font-family: "Rubik", sans-serif;
  color: white;
}

#accept-cookies:hover {
  background-color: #45a049;
}

#reject-cookies {
  background-color: #f44336;
  font-family: "Rubik", sans-serif;
  color: white;
}

#reject-cookies:hover {
  background-color: #da190b;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background-color: white;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1s ease;
    border-top: 0px solid #ccc;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0);
    z-index: 999;
  }

  nav a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
    margin: 0;
  }

  nav.active {
    max-height: 500px;
  }

  #cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
  }
  .social-icons {
    position: static;
    justify-content: center;
  }
}
