/* Reset nur für Honorar Page */
        .honorar-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* FontAwesome Icon Fix */
        .honorar-page .fas,
        .honorar-page .fa,
        .honorar-page i[class*="fa-"] {
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
            font-weight: 900 !important;
            font-style: normal !important;
            font-variant: normal !important;
            text-transform: none !important;
            line-height: 1 !important;
            -webkit-font-smoothing: antialiased !important;
            -moz-osx-font-smoothing: grayscale !important;
            display: inline-block !important;
        }

        /* Honorar Hero */
        .honorar-page .honorar-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 20px 70px;
            position: relative;
            overflow: hidden;
        }

        .honorar-page .honorar-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
            z-index: 1;
        }

        .honorar-page .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .honorar-page .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .honorar-page .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 24px;
        }

        .honorar-page .highlight {
            color: #28a745;
            position: relative;
        }

        .honorar-page .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #28a745, #20c997);
            border-radius: 2px;
        }

        .honorar-page .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 40px;
        }

        .honorar-page .hero-features {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .honorar-page .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 12px 20px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
        }

        .honorar-page .feature i {
            color: #28a745;
            font-size: 1.1rem;
        }

        .honorar-page .feature span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #495057;
        }

        .honorar-page .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .honorar-page .btn-primary {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 18px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            border: none;
        }

        .honorar-page .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
            color: white;
        }

        .honorar-page .btn-secondary {
            background: transparent;
            color: #28a745;
            padding: 18px 32px;
            border: 2px solid #28a745;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .honorar-page .btn-secondary:hover {
            background: #28a745;
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Visual */
        .honorar-page .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .honorar-page .honorar-showcase {
            width: 100%;
            max-width: 450px;
        }

        .honorar-page .showcase-container {
            background: white;
            border-radius: 20px;
            padding: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
            overflow: hidden;
            position: relative;
        }

        .honorar-page .showcase-header {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .honorar-page .showcase-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .honorar-page .showcase-title i {
            font-size: 1.5rem;
        }

        .honorar-page .showcase-year {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .honorar-page .showcase-content {
            padding: 30px;
        }

        .honorar-page .benefit-list {
            margin-bottom: 25px;
        }

        .honorar-page .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: #495057;
        }

        .honorar-page .benefit-item i {
            color: #28a745;
            font-size: 1rem;
        }

        .honorar-page .download-info {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #e9ecef;
        }

        .honorar-page .download-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc3545, #c82333);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .honorar-page .download-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .honorar-page .file-format {
            font-weight: 600;
            color: #212529;
            font-size: 1rem;
        }

        .honorar-page .file-size {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .honorar-page .availability-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ffc107, #ff9800);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        /* Honorar Benefits */
        .honorar-page .honorar-benefits {
            padding: 70px 20px;
            background: #ffffff;
        }

        .honorar-page .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .honorar-page .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .honorar-page .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .honorar-page .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .honorar-page .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .honorar-page .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
            text-align: center;
        }

        .honorar-page .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .honorar-page .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .honorar-page .benefit-icon i {
            font-size: 2rem;
            color: white;
        }

        .honorar-page .benefit-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
        }

        .honorar-page .benefit-card p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .honorar-page .benefit-highlight {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #28a745;
            font-weight: 500;
        }

        .honorar-page .benefit-highlight i {
            font-size: 0.8rem;
        }

        /* Honorar Info */
        .honorar-page .honorar-info {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .honorar-page .info-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .honorar-page .info-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .honorar-page .info-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .honorar-page .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .honorar-page .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .honorar-page .info-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .honorar-page .info-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
        }

        .honorar-page .info-card p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .honorar-page .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .honorar-page .info-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: #495057;
        }

        .honorar-page .info-list i {
            color: #28a745;
            font-size: 0.8rem;
        }

        .honorar-page .download-hint {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .honorar-page .hint-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffc107, #ff9800);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .honorar-page .hint-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .honorar-page .hint-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 8px;
        }

        .honorar-page .hint-content p {
            color: #6c757d;
            line-height: 1.6;
            margin: 0;
        }

        /* Additional Services */
        .honorar-page .additional-services {
            padding: 70px 20px;
            background: #ffffff;
        }

        .honorar-page .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .honorar-page .services-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: flex-start;
        }

        .honorar-page .services-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .honorar-page .services-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .honorar-page .services-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .honorar-page .service-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .honorar-page .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .honorar-page .service-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .honorar-page .service-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 5px;
        }

        .honorar-page .service-content p {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.5;
        }

        .honorar-page .services-visual {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .honorar-page .download-preview {
            width: 100%;
        }

        .honorar-page .download-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
            text-align: center;
            position: relative;
        }

        .honorar-page .download-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #dc3545, #c82333);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: white;
        }

        .honorar-page .download-info h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 8px;
        }

        .honorar-page .download-info p {
            color: #6c757d;
            margin-bottom: 15px;
        }

        .honorar-page .download-specs {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }

        .honorar-page .download-specs span {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #495057;
        }

        .honorar-page .download-specs i {
            color: #28a745;
            font-size: 0.8rem;
        }

        .honorar-page .download-status {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 193, 7, 0.1);
            color: #ffc107;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* FAQ Section */
        .honorar-page .honorar-faq {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .honorar-page .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .honorar-page .faq-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .honorar-page .faq-item {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .honorar-page .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }

        .honorar-page .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .honorar-page .faq-question:hover {
            background: #f8f9fa;
        }

        .honorar-page .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
            line-height: 1.4;
            flex: 1;
            padding-right: 20px;
        }

        .honorar-page .faq-question i {
            color: #28a745;
            font-size: 1rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .honorar-page .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .honorar-page .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .honorar-page .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .honorar-page .faq-answer p {
            padding: 0 30px 25px;
            margin: 0;
            color: #6c757d;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Download CTA */
        .honorar-page .download-cta {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .honorar-page .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .honorar-page .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .honorar-page .cta-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .honorar-page .cta-process {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .honorar-page .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .honorar-page .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .honorar-page .process-step span {
            font-size: 0.9rem;
            color: #495057;
            font-weight: 500;
            white-space: nowrap;
        }

        .honorar-page .process-arrow {
            color: #28a745;
            font-size: 1.2rem;
        }

        .honorar-page .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .honorar-page .cta-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .honorar-page .cta-guarantee i {
            color: #28a745;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .honorar-page .hero-content,
            .honorar-page .services-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .honorar-page .hero-title {
                font-size: 2.5rem;
            }

            .honorar-page .section-title,
            .honorar-page .services-title,
            .honorar-page .cta-title {
                font-size: 2rem;
            }

            .honorar-page .table-row {
                grid-template-columns: 1fr;
                gap: 8px;
                text-align: center;
            }

            .honorar-page .table-row.header .table-cell:not(:first-child) {
                display: none;
            }

            .honorar-page .table-body .table-row {
                padding: 20px;
                border: 1px solid #f1f3f4;
                border-radius: 12px;
                margin-bottom: 15px;
                background: white;
            }
        }

        @media (max-width: 768px) {
            .honorar-page .honorar-hero {
                padding: 100px 20px 50px;
            }

            .honorar-page .hero-title {
                font-size: 2rem;
            }

            .honorar-page .benefits-grid {
                grid-template-columns: 1fr;
            }

            .honorar-page .hero-cta,
            .honorar-page .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .honorar-page .btn-primary,
            .honorar-page .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .honorar-page .hero-features {
                justify-content: center;
            }

            .honorar-page .cta-process {
                flex-direction: column;
                gap: 20px;
            }

            .honorar-page .process-arrow {
                transform: rotate(90deg);
            }
        }

        @media (max-width: 480px) {
            .honorar-page .hero-title {
                font-size: 1.8rem;
            }

            .honorar-page .section-title {
                font-size: 1.8rem;
            }

            .honorar-page .benefit-card,
            .honorar-page .download-card {
                padding: 25px 20px;
            }

            .honorar-page .pdf-mockup {
                max-width: 320px;
            }

            .honorar-page .pdf-header {
                padding: 15px;
            }

            .honorar-page .pdf-content {
                padding: 15px;
            }
        }