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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  background-color: #1b1b1b;
  padding: 11px 6px 3px 10px;
}

header img {
  max-width: 200px;
  height: auto;
  margin-left: 30px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

.text-column {
  flex: 1 1 100%;
  padding: 40px;
}

.image-column {
  flex: 1 1 100%;
  padding: 50px;
  text-align: center;
}

.image-column img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  margin-bottom: 25px;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  padding-bottom: 10px;
}

ul{margin:0px;padding:0px;padding-left:14px}

#space {
  height: 0;
}

footer {
  background-color: #4d4d4d;
    color: #aeaeae;
    text-align: center;
    padding: 50px 0;
    margin-top: 20px;
    height: 200px;
    font-size: 12px;
}

.cta-button {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff3d00;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e43700;
}

@media (min-width: 768px) {
  header img {
    margin-left: 70px;
  }

  .container {
    padding: 40px;
  }

  .text-column {
    flex: 1 1 50%;
  }

  .image-column {
    flex: 1 1 50%;
  }

  #space {
    height: 7%;
  }
  h1 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.9rem;
  }

  ul > li {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 60px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.cookie-banner a {
    color: #4caf50;
    text-decoration: underline;
}

.cookie-banner button {
	width: 120px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 14px;
}

.cookie-banner button:hover {
    background-color: #45a049;
}