
body {
    font-family: 'Lustria', serif;
    margin: 0;
    padding: 0;
    color: #757081;
    background-color: #f9f9f9;

}


/* General Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.navbar-logo .logo {
    height: 60px;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-menu a:hover {
    background-color: #6c4f70;
    color: #ffffff;
    border-radius: 5px;
}

.dropdown-content a {
    padding: 12px 16px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Specific Section Styling */
.section {
    margin-bottom: 40px;
}

.section h2 {
    margin-bottom: 20px;
}

.section p {
    max-width: 100%;
    margin-bottom: 20px;
}

.section .vorher-nachher-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.vorher-nachher-container img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: ew-resize;
}

.try-out-text {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .vorher-nachher-container {
        width: 100%;
    }

    .try-out-text {
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
    }

    .slider-handle {
        top: 50%;
        left: 50%;
        width: 5px;
    }
}
