body, .background-container {
    margin: 0;
    font-family: "Advent Pro", sans-serif;
      background-image: url(6ur.jpg);
  background-size: cover;
  background-position: top; 
}


.main-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden; 
    box-sizing: border-box; 
}



.logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
    cursor: pointer;
}
.logo img {
    width: 120px;
    height: auto;
    background-color: rgba(77, 119, 49, 0.8);
    padding: 15px 5px;
}

.header-container {
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navigation {
    text-align: center;
}
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin-right: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #1d1d1d;
    font-weight: 750;
    position: relative;
    transition: color 0.3s ease;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #1d1d1d;
    transition: width 0.3s ease, left 0.3s ease, background-color 0.3s ease;
}
nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active,
nav ul li a.active {
    color: #4d7731;
}
nav ul li a:hover::after,
nav ul li a:focus::after,
nav ul li a:active::after,
nav ul li a.active::after {
    width: 100%;
    left: 0;
    background-color: #4d7731;
}
nav ul li a.active {
    color: #4d7731; 
}

nav ul li a.active::after {
    width: 100%; 
    left: 0;
    background-color: #4d7731; 
}
.content {
    margin-top: 88vh;
    margin-left: 170px;
    text-align: center;
    color: #ffffff;
     position: absolute; 
    z-index: 1; 
}
.main-heading, .sub-heading {
    margin: 0;
    text-align: left;
    color: #4d7731  ;
}
.main-heading {
    font-size: 2em;
    font-weight: 800;
    max-width: 800px;
}
.punkt1 {
    text-align: center;
    width: 200px;
    height: 200px;
    right: 84vh;
    position: absolute;
    top: 72%;
        transform: translateY(-50%);

}
    .punkt2 { 
        top: 22%;
            text-align: center;
    width: 400px;
    height: 200px;
    right: 26vh;

    position: absolute;
        transform: translateY(-50%);
    }


.punkt3 {
    text-align: center;
    width: 200px;
    height: 200px;
    right: 11vh;
    position: absolute;
    top: 91%;
        transform: translateY(-50%);
}

@media (max-width: 768px) {
    body, .background-container {
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
    }

    .main-container {
        height: auto;
        min-height: 100vh;
        padding-bottom: 50px;
        overflow-x: hidden;
    }

    .logo {
        position: relative;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        top: 0;
        left: 0;
        width: 100%;
    }

    .logo img {
        width: 80px;
        padding: 10px;
        background-color: rgba(77, 119, 49, 0.8);
    }

    .header-container {
        position: relative;
        background-color: rgba(255, 255, 255, 0.7);
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navigation {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
    }

    nav ul {
        display: inline-block;
        padding: 0 10px;
        justify-content: flex-start;
    }

    nav ul li {
        display: inline-block;
        margin: 0 8px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 5px 0;
    }

    .content {
        margin: 20px auto;
        padding: 20px;
        text-align: center;
        position: relative;
        width: 90%;
        top: 0;
        left: 0;
        transform: none;
        color: #4d7731;
    }

    .main-heading {
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .punkt1, .punkt2, .punkt3 {
        position: relative;
        width: 90%;
        height: auto;
        margin: 20px auto;
        padding: 15px;
        right: auto;
        top: auto;
        transform: none;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .punkt1 {
        margin-top: 0;
    }

    .punkt2 {
        margin-top: 20px;
    }

    .punkt3 {
        margin-bottom: 50px;
    }

    .punkt1 h2, .punkt2 h2, .punkt3 h2 {
        font-size: 1.3em;
        color: #4d7731;
    }

    .punkt1 p, .punkt2 p, .punkt3 p {
        font-size: 16px;
        text-align: center;
        color: #333;
    }

    /* Chat window adjustments */
    .chat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        line-height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .chat-window {
        width: 90%;
        max-width: 90%;
        bottom: 70px;
        right: 5%;
    }
}