
:root {
  --primary-color: #153e76;
  --background-light: #ffffff;
  --background-dark: #1a1a1a;
  --text-light: #000000;
  --text-dark: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--background-light);
  color: var(--text-light);
  transition: background-color 0.3s, color 0.3s;
}

.dark-mode {
  background-color: var(--background-dark);
  color: var(--text-dark);
}

header, footer {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  text-align: center;
}

.cookiesBanner {
  background: rgba(30, 30, 30, .75);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  text-align: center;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookiesBanner .wrapper-cookies {
  display: flex;
  align-items: center;
}
.cookiesBanner .wrapper-cookies .description {
  max-width: 760px;
  color: #fff;
  margin-right: 0.5rem;
}
.description a {
  color: #5be989;
  text-decoration: underline;
}
a{
  text-decoration: none;
}
.cookiesBanner .wrapper-cookies .okButton {
  margin-left: 1rem;
}
.orangeButton {
  border: 0;
  background: #153e76;
  color: white;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
  font-family: inherit;
  margin: 0;
  padding: 6px 15px;
  cursor: pointer;
  position: relative;
  outline: 0 none;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  vertical-align: top;
  text-decoration: none;
  font-weight: 700;
}

nav{
  background-color: #20559d;
  text-align: center;
  padding: 20px;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

main {
  padding: 30px;
}

.toggle-theme {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}


section { margin-bottom: 20px; }

form { display: flex; flex-direction: column; gap: 10px;}

input, textarea { padding: 10px; border: 1px solid #ccc; border-radius: 5px; }

button { padding: 10px; background: #153e76; color: #fff; border: none; border-radius: 5px; cursor: pointer; }

button:hover { background: #20559d;color: white;}


.disclaimer{
  border-top: 1px solid black;
}
