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

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #3a76f0; /* Das Blau von Signal */
}

.logo {
    height: 40px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

main {
    flex: 1;
    padding: 50px 20px;
    text-align: center;
}

main h1 {
    font-size: 42px;
    color: #3a76f0;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.img {
    width: 100%;
    max-width: auto;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.feature-item {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    color: #3a76f0;
    margin-bottom: 10px;
    font-size: 20px;

    
}

footer {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    position: fixed;
}

footer ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer ul li a {
    text-decoration: none;
    color: #3a76f0;

}


header img {
    height: 40px;
}

h1 {
    color: #3a76f0;
}
p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;

    
}
.faq-item {
    margin-top: 20px;
}

.privacy-section {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-feature {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-feature h2 {
    font-size: 24px;
    color: #3a76f0;
    margin-bottom: 10px;
}

.privacy-feature p {
    font-size: 16px;
    line-height: 1.6;
}



.about-section {
    margin-top: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}



.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background-color: #f0f0f0;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-box h2 {
    color: #3a76f0;
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.6;
}


        .features-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
        }

      

        .feature-box:hover {
            transform: scale(1.05);
        }

        .steps-section {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .step img {
            width: 200px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .step div {
            flex-grow: 1;
        }

        .step h2 {
            font-size: 24px;
            color: #3a76f0;
            margin-bottom: 10px;
        }

        .step p {
            font-size: 16px;
            line-height: 1.6;
        }

        .impressum {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            font-size: 18px;
            line-height: 1.8;
            color: #333;
        }
        
        .impressum h1 {
            font-size: 36px;
            color: #3a76f0;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }
        
        .impressum .intro {
            margin-bottom: 30px;
            font-size: 16px;
            color: #555;
            text-align: center;
        }
        
        .impressum h2 {
            font-size: 22px;
            margin-top: 30px;
            margin-bottom: 10px;
            color: #3a76f0;
            font-weight: 500;
            border-bottom: 2px solid #3a76f0;
            display: inline-block;
            padding-bottom: 5px;
        }
        
        .impressum p {
            margin-bottom: 20px;
            color: #444;
            line-height: 1.6;
        }
        
        .impressum a {
            color: #3a76f0;
            text-decoration: none;
        }
        
        .impressum a:hover {
            text-decoration: underline;
        }      

        .faq {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            font-size: 18px;
            line-height: 1.8;
            color: #333;
        }
        
        .faq h1 {
            font-size: 36px;
            color: #3a76f0;
            margin-bottom: 40px;
            font-weight: 600;
            text-align: center;
        }
        
        .faq-item {
            margin-bottom: 30px;
            padding: 20px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-item h2 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #3a76f0;
            font-weight: 500;
        }
        
        .faq-item p {
            margin-bottom: 0;
            color: #555;
            line-height: 1.6;
        }

        .privacy {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            font-size: 18px;
            line-height: 1.8;
            color: #333;
        }
        
        .privacy h1 {
            font-size: 36px;
            color: #3a76f0;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        .privacy .intro {
            margin-bottom: 40px;
            font-size: 20px;
            line-height: 1.8;
            color: #555;
            text-align: justify;
        }
        
        .privacy-item {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }
        
        .privacy-item:last-child {
            border-bottom: none;
        }
        
        .privacy-item h2 {
            font-size: 24px;
            color: #3a76f0;
            margin-bottom: 10px;
        }
        
        .privacy-item p {
            margin: 0;
            color: #555;
            line-height: 1.6;
        }

        /* Back-to-Top Button */
.back-to-top {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3a76f0;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #315bb0;
    transform: scale(1.1);
}
/* Zurück nach oben Button */
#backToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #3a76f0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

#backToTopButton:hover {
    background-color: #2a5bbf;
}
/* Zurück nach oben Button */
#backToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #3a76f0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

#backToTopButton:hover {
    background-color: #2a5bbf;
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Aktives Menü im mobilen Design */
nav ul.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #3a76f0;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

/* Mobile Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul {
        display: none;
    }
}

