* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16pt;
    background-color: #99be6e;
    color: #ffffff;
}

header {
    background-color: #99be6e;
    position: sticky;
    top: 0;
    height: 120px;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

nav img {
    height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

nav ul li a:hover,
nav ul li a.active {
    color: #664191;
}

.hamburger-menu {
    display: none;
}

.hamburger-icon {
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

.hamburger-nav {
    display: none;
    position: absolute;
    top: 120px;
    right: 0;
    background-color: #be6e99;
    padding: 20px;
}

.hamburger-nav li {
    margin-bottom: 10px;
}

.hamburger-nav li a {
    color: #ffffff;
    text-decoration: none;
}

.hamburger-nav li a:hover {
    color: #664191;
}

#hamburger-toggle {
    display: none;
}

#hamburger-toggle:checked ~ .hamburger-nav {
    display: block;
}

.info-section {
    background-color: #99be6e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 50px 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
}

.info-text {
    flex: 2;
    padding-right: 40px;
    color: #ffffff;
}

.info-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #664191;
}

.info-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.info-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #664191;
}

.instagram-link {
    color: #664191;
    font-size: 16px;
    text-decoration: none;
}

.instagram-link:hover {
    color: #ffffff;
}

.support-button {
    text-align: center;
    margin-top: 80px;
}

.support-button img {
    width: 35%;
    max-width: 150px;
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    max-width: 100%;
    max-height: 100%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.white-section {
    background-color: #ffffff;
    height: 500px;
}

.headline-section {
    background-color: #99be6e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.headline-section h1 {
    color: #ffffff;
    font-size: 40px;
}

.datenschutz-section {
    background-color: #99be6e;
    padding: 50px;
}

.datenschutz-section h2,
.datenschutz-section h3,
.datenschutz-section h4,
.datenschutz-section h5 {
    color: #664191;
    margin-top: 30px;
    margin-bottom: 10px;
}

.datenschutz-section p {
    margin-bottom: 15px;
}

.datenschutz-section a {
    color: #664191;
    text-decoration: none;
}

.datenschutz-section a:hover {
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .info-content {
        flex-direction: column;
    }

    .info-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}
