body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s;
}

.logo {
    width: 150px;
}

nav {
    display: flex;
    margin-right: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 18px;
}















.Hintergrund {
    background-image: url("Model-Frau.jpg");
    background-size: cover;
    background-position: center;
    padding: 50px 0; /* Abstand oben und unten für den Hauptinhalt */
}

.hero {
    background-image: url("hero-image.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}

.features {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.feature {
    flex: 1;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.feature h2 {
    font-size: 24px;
    margin-bottom: 10px;
}






















footer {
    background-color: white;
    padding: 20px;
    text-align: center;
    background-color: black;

    flex-wrap: wrap;
}

.footer-content {
    max-width: 1200px;
    margin: auto;

    flex-basis: calc(33.33% - 20px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.footer-links li {
    display: over;
    margin-right: 10px;
    text-align: left;
    
}

.footer-links a {
    text-decoration: none;
    color: white;
}



.newsletter-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    margin: 0 auto;
    margin-top: -130px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.newsletter-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}
.newsletter-input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}
.newsletter-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.newsletter-button:hover {
    background-color: #0056b3;
}
.newsletter-success {
    color: #00a000;
    margin-top: 10px;
}



.instagram-link {
    text-align: right;
    margin-top: -130px;
}
.instagram-link a {
    display: inline-block;
}



.copyright {
    color: white;  
    text-align: center; 
    margin-top: 80px;
}

