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

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(to bottom, #9E68BD, #420069);
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 40px 20px;
            min-height: 100vh;
        }

        header {
            text-align: center;
            margin-bottom: 5px;
        }

        header img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
        }

        header h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        header h2 {
            font-size: 18px;
            color: #fff;
        }

        .about {
            text-align: center;
            margin: 10px 0;
            font-size: 16px;
            line-height: 1.5;
            width: 100%;
            max-width: 800px;
            min-width: 320px;
        }

        .btn-primary {
            display: block;
            background-color: #A200FF;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            margin: 10px auto 0;
            width: 100%;
            max-width: 300px;
        }

        .btn-primary:hover {
            background-color: #8900cc;
        }

        .dark-section {
            background-color: #424242;
            color: #fff;
            padding: 20px;
            width: 100%;
            max-width: 800px;
            min-width: 320px;
            border-radius: 10px;
            text-align: center;
            margin: 20px 0;
            position: relative;
        }

        .dark-section::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 10px;
            background: linear-gradient(to bottom, #2F2F2F, transparent);
            z-index: -1;
        }

        .dark-section h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .dark-section p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .dark-section .btn-secondary {
            display: block;
            background-color: #A200FF;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            margin: 10px auto;
            width: 100%;
            max-width: 300px;
        }

        .dark-section .btn-secondary:hover {
            background-color: #8900cc;
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            display: block;
            background-color: #A200FF;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            margin: 10px auto;
            width: 100%;
            max-width: 300px;
        }

        .btn-secondary2 {
            display: block;
            background-color: #fff;
            color: #000;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            margin: 10px auto;
            width: 100%;
            max-width: 300px;
        }
        .btn-secondary2:hover {
            background-color: #ffffff;
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        .dark-section .btn-secondary:hover {
            background-color: #8900cc;
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        footer {
            margin-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #ccc;
            padding: 10px 0;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
            margin: 0 10px;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media (min-width: 768px) {
            body {
                padding: 60px;
            }

            .about {
                font-size: 18px;
                max-width: 700px;
            }

            .btn-primary {
                font-size: 18px;
            }

            .dark-section {
                padding: 30px;
                max-width: 700px;
            }

            .dark-section h3 {
                font-size: 24px;
            }

            .dark-section p {
                font-size: 18px;
            }

            .dark-section .btn-secondary {
                font-size: 18px;
            }
        }

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
}
        .gallery-section {
            margin-top: 40px;
        }

        .gallery-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .gallery img {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
        }
.btn-back {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    margin-left: 0;
    text-align: left;
}

.btn-backu {
    display: inline-block;
    background-color: #A200FF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    margin-left: 0;
    text-align: left;
}

.btn-container {
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox.hidden {
    display: none;
}

.close-btn, .nav-btn {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.close-btn {
    top: 10px;
    right: 10px;
}

.nav-btn {
    top: 50%;
    transform: translateY(-50%);
}

#prev-lightbox {
    left: 10px;
}

#next-lightbox {
    right: 10px;
}

.content {
    width: 100%;
    max-width: 800px; /* Gleiche maximale Breite wie Index */
    min-width: 320px; /* Mindestbreite für Mobile */
    text-align: left;
    margin: 0 auto; /* Zentriere die Inhalte horizontal */
}
