body,html {
  background-color: #eeebe3;

  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #1f48a8;
}

a:hover {
  color: #3b6bdb;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-bottom {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #1f48a8;
  margin: 0 8px;
}

.text-bottom-left {
  font-size: clamp(1em, 2vw + 0.5em, 3em);
}

.text-bottom-right {
  font-size: clamp(1em, 2vw + 0.5em, 2em);
}

.text-bottom p {
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
  padding: 0;
  margin: 0;
}
h2 {
  color: #1f48a8;
  font-weight: 700;
  font-size: 3em;
  margin: 1em 0;
}


/* Newsletter block */
.newsletter {
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  min-width: 800px;
  max-width: 1366px;
  border: 4px #000 solid;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-group input[type="email"] {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}

.form-group.recaptcha {
  text-align: center;
}

.newsletter button {
  background-color: #004aad;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background-color: #3b6bdb;
}

/* Micro Footer */
.micro-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #444;
  padding: 1.5rem 0;
  border-top: 1px solid #ccc;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

.micro-footer a {
  color: #1f48a8;
}
.supporters {
text-align: center;
margin: 1em 0;
}

.supporters img {
display: inline;
width: 320px;
}

.supporters-text {
  margin: 0 0 2em 0;
}

.micro-footer a:hover {
  color: #3b6bdb;
}

/* Legal Notice page */
.legal-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
}

.legal-container h1 {
  color: #1f48a8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.legal-container h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: #1f48a8;
}

.legal-container h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.legal-container p {
  line-height: 1.6;
  margin: 0.5rem 0;
}

