body {
  font-family: "Rubik", sans-serif;
  font-size: 1.1em;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #0b00ff;
}

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;
}

.card {
  background: white;
  width: 100%;
  max-width: 900px;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  margin: 60px auto;
  text-align: left;
}

h2 {
  font-size: 36px;
  color: #d71285;
}

h3 {
  font-size: 24px;
  color: #190ee4;
  margin-top: 40px;
}

h4 {
  font-size: 20px;
  color: #190ee4;
  margin-top: 30px;
}

.text {
  font-size: 18px;
  line-height: 1.6;
  white-space: normal;
  margin-bottom: 20px;
  color: #190ee4;
}

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;
}

#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) {
  header {
    padding: 10px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    z-index: 999;
  }

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

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

  h2 {
    margin-right: 20px;
  }

  h3 {
    margin-right: 20px;
  }

  h4 {
    margin-right: 20px;
  }

  .text {
    margin-right: 20px;
  }

  .card {
    width: calc(100% - 30px);
    padding: 20px;
    padding-right: 0px;
    margin: 30px auto;
  }

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

  #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;
  }

  .cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
