        /* Grundlegende Stile - Übereinstimmung mit Hauptseite */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
       
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
       
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
       
        /* Header - Identisch zur Hauptseite */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
       
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
            padding-right: 20px;
        }
       
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #2c7873;
            text-decoration: none;
            z-index: 1002;
            margin-left: 20px;
        }
       
        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
       
        .desktop-nav ul li {
            margin-left: 25px;
        }
       
        .desktop-nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
       
        .desktop-nav ul li a:hover {
            color: #2c7873;
        }
       
        /* Mobile Navigation - Hamburger Menu */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1002;
            width: 30px;
            height: 24px;
            justify-content: space-between;
            background: transparent;
            border: none;
            padding: 0;
            position: relative;
        }
       
        .hamburger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #2c7873;
            transition: 0.3s;
            border-radius: 2px;
            transform-origin: center;
        }
       
        /* Hamburger Menu Animation - FIXED */
        .hamburger-menu.active span:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }
       
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
       
        .hamburger-menu.active span:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
       
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 1001;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
       
        .mobile-nav.active {
            transform: translateX(0);
        }
       
        .mobile-nav ul {
            list-style: none;
            text-align: center;
            width: 100%;
            padding: 0 20px;
        }
       
        .mobile-nav ul li {
            margin: 20px 0;
        }
       
        .mobile-nav ul li a {
            text-decoration: none;
            color: #333;
            font-size: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
            display: block;
            padding: 12px 0;
        }
       
        .mobile-nav ul li a:hover {
            color: #2c7873;
        }
       
        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 2.5rem;
            color: #2c7873;
            cursor: pointer;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1003;
        }
       
        .close-menu:hover {
            color: #1f5d59;
        }
       
        /* Hero Section für Unterseite */
        .page-hero {
            background: linear-gradient(rgba(44, 120, 115, 0.85), rgba(44, 120, 115, 0.85)), url('https://zubereitung.apoglow.com/images/background.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
       
        .page-hero h1 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
       
        .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 20px;
        }
       
        /* Floating CTA Button */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #ff7e5f, #e86a4c);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(232, 106, 76, 0.4);
            z-index: 999;
            display: none;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }
       
        .floating-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(232, 106, 76, 0.5);
        }
       
        .floating-cta.visible {
            display: flex;
        }
       
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
       
        .floating-icon {
            font-size: 1.2rem;
        }
       
        .btn {
            display: inline-block;
            background-color: #ff7e5f;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
       
        .btn:hover {
            background-color: #e86a4c;
            transform: translateY(-2px);
        }
       
        .btn-secondary {
            background-color: #2c7873;
        }
       
        .btn-secondary:hover {
            background-color: #1f5d59;
        }
       
        /* Zubereitungsanleitung */
        .preparation-guide {
            padding: 60px 0;
            background-color: white;
        }
       
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2rem;
            color: #2c7873;
        }
       
        .section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
            color: #666;
        }
       
        .steps-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 60px;
        }
       
        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 30px 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
       
        .step:hover {
            transform: translateY(-5px);
        }
       
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF9A3C, #FF6B6B);
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
       
        .step h3 {
            margin-bottom: 15px;
            color: #333;
            font-size: 1.4rem;
        }
       
        .step p {
            color: #666;
            margin-bottom: 20px;
        }
       
        .step-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: #2c7873;
        }
       
        .warning-note {
            background-color: #FFF5E6;
            border-left: 4px solid #FF9A3C;
            padding: 20px;
            margin: 30px auto;
            max-width: 800px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
       
        .warning-note h4 {
            color: #E67E22;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
       
        .warning-icon {
            margin-right: 10px;
            font-size: 1.2rem;
        }
       
        /* Video-Sektion */
        .video-section {
            padding: 60px 0;
            background-color: #f5f5f5;
            text-align: center;
        }
       
        .video-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
       
        .video-placeholder {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #2c7873, #FF9A3C);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
        }
       
        .video-placeholder i {
            font-size: 80px;
            margin-bottom: 20px;
        }
       
        .video-note {
            margin-top: 20px;
            font-style: italic;
            color: #666;
            font-size: 0.9rem;
        }
       
        /* Tipps Sektion */
        .tips-section {
            padding: 60px 0;
            background-color: white;
        }
       
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
       
        .tip {
            padding: 25px;
            background-color: #f9f9f9;
            border-left: 4px solid #2c7873;
            border-radius: 5px;
            transition: transform 0.3s;
        }
       
        .tip:hover {
            transform: translateY(-3px);
        }
       
        .tip h3 {
            margin-bottom: 15px;
            color: #2c7873;
            display: flex;
            align-items: center;
        }
       
        .tip-icon {
            margin-right: 10px;
            font-size: 1.3rem;
        }
       
        .flavor-tip {
            border-left: 4px solid #FF9A3C;
            background-color: #FFF5E6;
        }
       
        .flavor-tip h3 {
            color: #E67E22;
        }
       
        /* CTA Sektion */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(to right, #2c7873, #3a9e95);
            color: white;
            text-align: center;
            margin-top: 40px;
        }
       
        .cta-section h2 {
            margin-bottom: 20px;
            font-size: 2rem;
        }
       
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
       
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
       
        /* FAQ Sektion für SEO */
        .faq-section {
            padding: 60px 0;
            background-color: #f5f5f5;
        }
       
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 25px;
        }
       
        .faq-question {
            font-weight: bold;
            color: #2c7873;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
       
        /* Keyword-Box unter FAQ */
        .keyword-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 10px;
            margin: 40px auto;
            border-left: 5px solid #2c7873;
           /* max-width: 900px; */
        }
       
        .keyword-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }
       
        .keyword-tag {
            background-color: #2c7873;
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
       
        /* SEO-Optimierte Inhaltsblöcke */
        .seo-content {
            padding: 60px 0;
            background-color: white;
        }
       
        .seo-block {
            margin-bottom: 40px;
            padding: 30px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
       
        .seo-block h2 {
            color: #2c7873;
            margin-bottom: 20px;
            font-size: 1.6rem;
        }
       
        .seo-block h3 {
            color: #333;
            margin: 20px 0 15px;
            font-size: 1.3rem;
        }
       
        .keyword-highlight {
            /* color: #2c7873; */
            color:#fff;
            font-weight: bold;
        }
       
        /* Footer - Identisch zur Hauptseite */
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
        }
       
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
       
        .footer-column h3 {
            margin-bottom: 20px;
            color: #2c7873;
        }
       
        .footer-column ul {
            list-style: none;
        }
       
        .footer-column ul li {
            margin-bottom: 10px;
        }
       
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
       
        .footer-column ul li a:hover {
            color: #2c7873;
        }
       
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .footer-schema {
            font-size: 0.8rem;
            color: #6c757d;
            margin-top: 10px;
        }
        
        .button-display-none{
            display: none;
        }
       
        /* Breadcrumb Navigation */
        .breadcrumb {
            padding: 15px 0;
            background-color: #f5f5f5;
            font-size: 0.9rem;
            padding-left: 20px;
        }
       
        .breadcrumb a {
            color: #2c7873;
            text-decoration: none;
        }
       
        .breadcrumb a:hover {
            text-decoration: underline;
        }
       
        /* Responsive Design - Mobile First */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
           
            .hamburger-menu {
                display: flex;
            }
           
            .mobile-nav {
                display: flex;
            }
           
            .page-hero h1 {
                font-size: 1.8rem;
            }
           
            .steps-container {
                flex-direction: column;
            }
           
            .step {
                width: 100%;
            }
           
            .video-placeholder {
                height: 300px;
            }
           
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
           
            .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 10px;
            }
           
            .seo-block {
                padding: 20px;
            }
           
            .floating-cta {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
           
            .keyword-box {
                margin: 30px 20px;
                padding: 20px;
            }
           
            .keyword-list {
                justify-content: center;
            }
        }
       
        @media (max-width: 480px) {
            .page-hero {
                padding: 50px 0;
            }
           
            .section-title {
                font-size: 1.7rem;
            }
           
            .step h3 {
                font-size: 1.2rem;
            }
           
            .floating-cta {
                bottom: 15px;
                right: 15px;
                padding: 10px 15px;
                font-size: 0.8rem;
            }
           
            .floating-icon {
                font-size: 1rem;
            }
            .breadcrumb {
                font-size: 0.7rem;
            }
            
            .fruit-display{
                display: none;    
            }
            
            .keyword-box {
                margin: 30px 10px;
                padding: 15px;
            }
           
            .keyword-tag {
                font-size: 0.8rem;
                padding: 4px 12px;
            }
           
            .close-menu {
                top: 20px;
                right: 20px;
                font-size: 2.2rem;
            }
           
            .mobile-nav ul li a {
                font-size: 1.3rem;
                padding: 10px 0;
            }
           
            .hamburger-menu.active span:nth-child(1) {
                transform: translateY(10.5px) rotate(45deg);
            }
           
            .hamburger-menu.active span:nth-child(3) {
                transform: translateY(-10.5px) rotate(-45deg);
            }
        }
       
        /* Microinteractions für bessere UX */
        .pulse-animation {
            animation: pulse 2s infinite;
        }
       
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
       
        /* Schema.org Struktur sichtbar machen */
        .structured-data {
            display: none;
        }