body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #333;
}

h1 {
  font-size: 4em;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

h2 {
  font-size: 2em;
  margin: 0;
  font-weight: 400; 
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}


.container {
  max-width: 1200px;
  margin: 4rem auto 2rem; 
  padding: 0 2rem;
  text-align: center;
  color: white; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.5); 
}


body.homepage {
  background-image: url('../images/background_home.webp'); 
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  min-height: 100vh;            
}

body.speeddate {
  background-color:#40474F;; 
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 100vh;            
}

body.end {
  background-image: url('../images/background_end.webp'); 
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 100vh;            
}


.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 4px solid #40474F; 
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 1000; 
  padding: 1.5rem 0;
  font-family: 'Montserrat', sans-serif;
  animation: slideUp 0.5s ease-out;
}

.privacy-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.privacy-banner__header {
  font-weight: 700;
  font-size: 1.1rem;
  color: #40474F;
  margin-bottom: 0.5rem;
}

.privacy-banner__description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  max-width: 800px;
}

.privacy-banner__actions {
  flex-shrink: 0; 
}

.privacy-button {
  background-color: #40474F;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px; 
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.privacy-button:hover {
  background-color: #666c72;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 768px) {
  .privacy-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .privacy-banner__description {
    font-size: 0.85rem;
  }
}