body {
    font-family: Arial, sans-serif;
    background-color: #161616;
    margin: 0;
    padding: 0;
    color: #fff;
    overflow-x: hidden;
}
.container {
    width: calc(100% - 40px);
    margin: auto;
    overflow: hidden;
    padding: 20px;
}
header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #415b70 3px solid;
}
header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header ul {
    padding: 0;
    list-style: none;
}
header li {
    display: inline;
    padding: 0 20px 0 20px;
}
.main-content {
    padding: 20px;
    background: #444;
    margin-top: 120px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.main-content h1 {
    text-align: center;
    color: #fff;
}

.main-content h1.lazybridge-title {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.main-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}
.buttons {
    text-align: center;
    margin-top: 20px;
}
.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #415b70;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Add new styles for Lazybridge download button */
.buttons a[download] {
    background-color: #ff8c00;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
}

.buttons a[download]:hover {
    background-color: #ffa500;
}

.buttons a:hover {
    background-color: #415b70;
}
.benefits {
    margin-top: 20px;
    background: #555;
    padding: 20px;
    border-radius: 5px;
}
.benefits h2 {
    text-align: center;
    color: #fff;
}
.benefits ul {
    list-style: none;
    padding: 0;
}
.benefits li {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}
.roadmap {
    margin-top: 40px;
}
.roadmap h2 {
    text-align: center;
    color: #fff;
}
.roadmap .goal {
    background: #415b70;
    color: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.roadmap .goal.visible {
    transform: translateY(0);
    opacity: 1;
}
.roadmap .goal h3 {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.roadmap .goal h3::after {
    content: '▼';
    font-size: 16px;
    transition: transform 0.3s ease;
}
.roadmap .goal.active h3::after {
    transform: rotate(180deg);
}
.roadmap .goal p {
    margin: 10px 0 0 0;
    display: none;
}
.roadmap .goal.active p {
    display: block;
}
.contact {
    margin-top: 40px;
    text-align: center;
}
.contact p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}
.contact a {
    color: #77aaff;
    text-decoration: none;
}
.contact a:hover {
    text-decoration: underline;
}

.impressum
{
    
    margin-top: 120px;
   
    padding: 50px;
    border-radius: 5px;
}