/* General styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  /* Background image */
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
}

/* Header */
header {
  background: #1e293b;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav li {
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 6px;
  transition: background 0.3s;
}

nav li:hover,
nav li.active {
  background: #3b82f6;
}

/* Hamburger menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
}

/* Legal Notice styling */
.legal-info {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-info strong {
  display: inline-block;
  width: 150px;
}


/* Mobile menu styles */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #1e293b;
    width: 200px;
    border-radius: 0 0 8px 8px;
    display: none;
  }

  nav ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 10px;
  }

  nav li {
    text-align: center;
  }

  nav.show {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}

/* Main content */
main {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

main h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1e293b;
}

main p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  text-align: center;
  position:fixed;
  bottom:0;
  width:100vw;
  padding: 20px;
  background: #1e293b;
  color: #fff;
  margin-top: 30px;
  font-size: 0.9rem;
}

footer a {
  color: #3b82f6;
  text-decoration: none;
  margin-left: 10px;
}

footer a:hover {
  text-decoration: underline;
}