 <style>
       body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f7;
            color: #333;
        }




 header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #895735;
        color: white;
        padding: 10px 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
     text-align: center;
    }

    header h1 {
        margin: 0;
        font-size: 1.5em;
    }

    main {
        margin-top: 60px; /* Platz für den fixierten Header */
        padding: 20px;
    }

    h2 {
        margin-top: 1.5em;
    }


        header h1 {
            margin: 0;
            font-size: 24px;
        }
        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            text-decoration: none;
            color: white;
            font-size: 20px;
        }
        nav ul li a:hover {
            text-decoration: underline;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .menu-toggle span {
            background: white;
            height: 3px;
            margin: 4px 0;
            width: 25px;
        }
        .nav-links {
            display: flex;
        }
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                text-align: center;
            }
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #895735;
                text-align: left;
                padding: 10px 0;
            }
            .nav-links.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
        }
        .hero {
            background-image: url('./public2/banner4.jpg');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }
        .hero h2 {
            font-size: 48px;
            margin: 0;
        }
        .hero p {
            font-size: 18px;
            margin-top: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 10px;
        }
 }
        .container-blog {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 10px;
            background: white;
        }
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .category {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            flex: 1 1 calc(25.00% - 20px);
            max-width: calc(33.333% - 20px);
            text-align: center;
            transition: transform 0.3s;
            
}
  }

.category:hover {
    transform: translateY(-10px);
}

        @media (max-width: 768px) {
            .categories {
                flex-direction: column;
                align-items: center;
            }
            .category {
                flex: 1 1 100%;
                max-width: 100%;
            }
            
            
        }
        .category img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .category-content {
            padding: 20px;
        }
        .category-content h3 {
            margin: 0 0 10px;
            font-size: 20px;
        }
        .category-content p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }
        .additional-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #eaeaea;
            border-radius: 8px;
            text-align: justify
        }
        .additional-section h2 {
            margin-top: 0;
        }
        footer {
            background-color: #995735;
            color: white;
            padding: 20px 10%;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        
           .nice-button {
            background-color: #323232; /* Antazit */
            border: none;
            color: white;
            padding: 15px 30px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 10px 0;
            cursor: pointer;
            border-radius: 8px; /* Abgerundete Ecken */
            box-shadow: 0 4px #242424; /* Schatten */
            transition: all 0.3s ease;
        }

        .nice-button:hover {
            background-color: #3f3f3f; /* Etwas helleres Grün */
            box-shadow: 0 6px #242424;
            transform: translateY(-2px);
        }

        .nice-button:active {
            box-shadow: 0 2px #242424;
            transform: translateY(2px);
        }

 .shop-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        .shop-item {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            text-align: center;
            padding: 15px;
        }
        .shop-item img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .shop-item h3 {
            font-size: 1.5em;
            margin: 10px 0;
        }
        .shop-item p {
            color: #555;
            font-size: 1em;
            margin: 10px 0 20px;
        }
        .buy-button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .buy-button:hover {
            background-color: #45a049;
        }

html {
    scroll-behavior: smooth;
}


.box {
    width: 200px;
    height: 100px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.widthbanner {
            display: flex;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: calc(283px);
            height: calc(150px);
            text-align: center;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            
        }

.widthbanner:hover {
    transform: translateY(-10px);
}


.space1 {
            background-color: #f5f5f7;
            border: 1px solid #f5f5f7;
            overflow: hidden;
            flex: 1 1 calc(10.00% - 20px);
            max-width: calc(30px);
            max-height: calc(5px);
            text-align: center;
        }

.blog-section {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.blog-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.blog-post {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-width: 350px;
    max-width: 350px;
    max-height: 500px;
    min-height: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 350px;
    height: 250px;
    display: block;
}

.blog-post h3 {
    font-size: 1.5em;
    margin: 15px;
    color: #333;
}

.blog-post p {
    font-size: 1em;
    margin: 0 15px 15px;
    color: #666;
    text-align: justify;
}

.blog-post .read-more {
    display: inline-block;
    margin: 10px 15px 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.blog-post .read-more:hover {
    background-color: #0056b3;
}


.shop-container2 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        .shop-item2 {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            max-height: 350px;
            text-align: center; 
            padding: 15px;
        }
        .shop-item img2 {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .shop-item h32 {
            font-size: 1.5em;
            margin: 10px 0;
            
        }
        .shop-item p2 {
            color: white;
            font-size: 1em;
            margin: 10px 0 20px;
        }
        .buy-button2 {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .buy-button2:hover {
            background-color: #0058b7;
        }

.beitraege {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 10px;
            background: #f5f5f5;
    text-align: justify;
        }

.podcast-container {
  margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    background: #efebe3;
    max-width: 900px;
    min-width: 350px;
    max-height: 800px;
    min-height: 250px;
    border: 1px solid;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.podcast-container:hover {
    transform: translateY(-10px);
}

.podcast-post {
    background: #efebe3;
    border: 0px solid;
    border-radius: 0px;
    overflow: hidden;
    min-width: 350px;
    max-width: 500px;
    max-height: 500px;
    min-height: 250px;

}

.podcast-post h3 {
    font-size: 1.5em;
    margin: 15px;
    color: #333;
}

.podcast-post p {
    font-size: 1em;
    margin: 0 15px 15px;
    color: #666;
    text-align: justify;
}

 


       
    </style>