body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #666666;
	background-image: url("../img/background.jpg");
	background-repeat: repeat-x;
	background-color: #CCCCCC;
	text-align: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #ff8b02;
  flex-wrap: wrap;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header img {
  max-height: 60px;
}

nav {
  display: flex;
  gap: 1rem;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav ul li a.link-active {
  text-decoration: underline;
  color: #FFF;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1, h2 {
  font-size: 1rem; /* entspricht normalem Text */
  font-weight: normal;
  margin-top: 0;
}

.headline {
  padding: 0 1rem 0 3rem;
  margin: 0.5rem 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  background-image: url(../img/easy-solutions-edv-service-it-notdienst-rendsburg-logo.gif);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40px auto;
  min-height: 32px;
  display: flex;
  align-items: center;
}

h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #ff8b02;
  margin: 0;
}

a {
  color: #ff8b02;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.content-wrapper {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: transparent;
}

.content-box {
  background-color: white;
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
  padding-left: 40px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background-color: #ff8b02;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }

  nav ul.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .burger {
    display: flex;
  }
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin-top {
  margin-top: 0;
}
