html, body {
    height: 100%; /* Seite nimmt die volle Höhe des Viewports ein */
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: #333;
    max-width: 1600px;
    margin: 0 auto; /* Zentriert den Container horizontal */
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f9;
}

.content {
    flex: 1;
}

h1 {
    text-transform: uppercase;
    font-size: 1.8rem;
    margin: 20px 0;
    color: #833C0C;
    text-align: left;
}

.logo {
    width: 80px;
}

.headline .text-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: #77AE2E;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-bottom: 2px solid #833C0C;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0; /* Kein Abstand nach unten */
}


.navbar-header {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.menu-toggle {
    position: absolute;
    right: 2rem; /* Abstand vom rechten Rand */
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.navbar-menu li {
    margin-left: 20px;
    white-space: nowrap; /* Verhindert Zeilenumbrüche in den Links */
}

.nav-link {
    display: inline-block;
    color: #833C0C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    background-color: #833C0C;
    color: white;
}


@media (max-width: 1000px) {
    .navbar {
        position: sticky;
        top: 0px;
        backdrop-filter: blur(24px);
    }
    
    .menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #833C0C;
        z-index: 1000;
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 12px;
        margin: 0px;
        text-align: left;
        color: #333;
        font-size: 1rem;
        border-bottom: 1px solid #ddd; /* Trennlinien zwischen den Links */
        border-radius: 0px;
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: #833C0C;
        color: white;
    }


    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        margin: 0 0;
        text-align: left;
    }  
	
	
    h1 {
        font-size: 20px;
    }

    .headline .text-highlight {
        font-size: 20px;
    } 
    
	.logo {
    width: 60px;
	}
}

.button a {
    color: white;
    background-color: #77AE2E;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #77AE2E;
}

.button a:hover {
    background-color: #8fc24d;
    border: #8fc24d;
}

.pricing-container {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    gap: 20px;
}

.pricing-box {
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 250px; /* Maximalhöhe setzen */
    overflow: hidden;  /* Verhindert, dass der Inhalt außerhalb der Box angezeigt wird */
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-box.active {
    max-height: none; /* Höhe auf "auto" setzen, wenn der Inhalt sichtbar ist */
}


/* Für die Überschriften der Boxen */
.pricing-box h2 {
    font-size: 2em;
    margin-bottom: 30px;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-box {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Liste JavaScript */
.info-list {
    display: none;
    padding: 15px;
    margin-top: 25px;
    text-align: left;
    color: #555;
    line-height: 1.6
}

#button-medi a {
    text-align: left;
    color: white;
    background-color: #833C0C;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #833C0C;
}

#button-medi a:hover {
    background-color: #a46337;
    border: #a46337;
}

.info-list p {
    margin-bottom: 40px;
    margin-top: 0px;
}



.footer {
    background-color: #68320d;
    color: #d1d5db;
    padding: 20px 40px;
    margin-top: auto; /* Damit der Footer unten bleibt */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #9ca3af;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: #d1d5db;
    text-decoration: none;
}

#equam-image {
    width: 130px;
    margin-top: 15px;
}

#medix-image {
    width: 130px;
    margin-top: 5px;
    margin-bottom: 15px;
}