body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #ebebeb;
}

main {
    padding: 80px 15% 30px 15%;
}
  
header {
    position: fixed;
    width: 70%;
    z-index: 100;
    background-color: #fff;
    padding: 10px 15% 10px 15%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.logo img {
    height: 50px;
}
  
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
  
nav li {
    margin-right: 20px;
}
  
nav a, a:active, a:visited {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
  
nav a:hover {
    color: #ed1c24;
}
  
.hero {
    background-color: #ed1c24;
    color: #fff;
    padding: 50px;
    text-align: center;
}
  
.hero h1 {
    font-size: 48px;
    margin: 0;
    line-height: 1.2;
}
  
.hero p {
    font-size: 24px;
    margin-top: 20px;
}
  
.button {
    display: inline-block;
    background-color: #fff;
    color:#ed1c24;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
    
.button:hover {
    background-color: #ffcc00;
    color: #fff;
}
    
.services {
    padding: 50px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-top: 0;
}
        
.services ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
        
.services li {
    margin: 3% 2% 0 2%;
    font-size: 24px;
    display: flex;
    align-items: center;
}
        
.services i {
    font-size: 24px;
    margin-right: 20px;
    color: #ffcc00;
}

.about {
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-top: 0;
}

.about li {
    margin: 5px;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.about ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact {
    padding: 20px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-top: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}
  
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
  
.contact-info {
    width: 40%;
    padding: 20px;
}
  
.contact-info h3 {
    margin-top: 0;
}
  
.contact-info ul {
    list-style: none;
    padding: 0;
}
  
.contact-info ul li {
    margin-bottom: 10px;
}
  
.contact-info ul li i {
    margin-right: 10px;
}
  
.contact-form {
    width: 60%;
    padding-left: 20px;
}
  
.contact-form h3 {
    margin-top: 0;
}
  
.contact-form form {
    display: flex;
    flex-direction: column;
}
  
.contact-form form .form-group {
    margin-bottom: 20px;
}
  
.contact-form form label {
    display: block;
    margin-bottom: 5px;
    text-align: start;
}
  
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
  
.contact-form form button[type="submit"] {
    background-color: #ed1c24;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
  
.contact-form form button[type="submit"]:hover {
    background-color: #c9171d;
}

.impressum p {
    margin: 2px 0 0 0;
}

.datenschutz p {
    margin: 2px 0 0 0;
}

footer {
    left: 0;
    bottom: 0;
    width: 70%;
    background-color: #333;
    color: #fff;
    padding: 20px 15% 20px 15%;
    text-align: center;
    justify-content: space-between;
}
            
.footer ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.footer li {
    align-items: center;
}

.footer a, .footer a:hover, .footer a:active, footer a:visited{
    color: #ebebeb;
}
            
@media (max-width: 768px) {
    .hero {
        padding: 50px;
    }
            
    .services {
        padding: 20px;
    }
            
    nav {
        display: none;
   }
}

.contact-form {
    width: 400px;
}
          
  