/* Footer and disclaimer styles */

.disclaimer {
  min-height: 600px;
  padding: 40px 0;
  border-top: 2px solid rgba(30, 58, 138, 0.2);
  margin-top: 40px;
}

.disclaimer h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.disclaimer p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1e3a8a;
  text-align: justify;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(30, 58, 138, 0.2);
  border-bottom: 1px solid rgba(30, 58, 138, 0.2);
}

.footer-link {
  color: #1e3a8a;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  padding: 5px 10px;
}

.footer-link:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  padding: 20px 0;
}

.footer-logos a {
  display: inline-block;
  transition: transform 0.3s ease;
  background-color: #e0f2fe;
  padding: 10px;
  border-radius: 8px;
}

.footer-logos a:hover {
  transform: scale(1.1);
}

.footer-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logos a:hover img {
  opacity: 1;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(30, 58, 138, 0.7);
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 58, 138, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 10px rgba(30, 58, 138, 0.2);
  border-top: 2px solid rgba(30, 58, 138, 0.3);
  min-height: 100px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  color: var(--primary-color);
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.accept-cookies {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.accept-cookies:hover {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(30, 58, 138, 0.3);
}

@media screen and (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .cookie-banner p {
    margin-bottom: 10px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logos {
    gap: 15px;
  }

  .footer-logos img {
    height: 35px;
  }

  .disclaimer {
    padding: 30px 0;
  }

  .disclaimer h2 {
    font-size: 20px;
  }
}

