/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #F5F5F5;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styles */
header {
  background-color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 48px;
}

header h1 {
  font-size: 36px;
  margin-bottom: 24px;
  text-align: center;
}

/* Main styles */
main {
  padding: 0 24px;
}

/* Section styles */
section {
  margin-bottom: 48px;
}

section h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

ul li {
  margin-bottom: 8px;
}

/* Button styles */
button {
  background-color: #333333;
  color: #FFFFFF;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

button:hover {
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #333333;
}

/* Cookie banner styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  color: #333333;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  z-index: 9999;
}

#cookie-banner p {
  margin-right: 24px;
}

#cookie-accept {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  header h1 {
	font-size: 30px;
  }

  section h2 {
	font-size: 22px;
  }

  button {
	font-size: 14px;
	padding: 6px 12px;
  }

  #cookie-banner {
	padding: 12px 24px;
	font-size: 14px;
  }
}
footer {
  background-color: #f7f7f7;
  padding: 1em;
  margin-top: 2em;
  border-radius: 0.5em;
  display: flex;
  justify-content: center;
}

.legal-links {
  display: flex;
  gap: 1em;
}

.legal-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.9em;
}

.legal-links a:hover {
  text-decoration: underline
