/* Reset nur für Community Page */
        .community-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        /* FontAwesome Icon Fix */
        .community-page .fas,
        .community-page .fa,
        .community-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;
        }
        /* Community Hero */
        .community-page .community-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 20px 70px;
            position: relative;
            overflow: hidden;
        }

        .community-page .community-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;
        }

        .community-page .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .community-page .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .community-page .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 24px;
        }

        .community-page .highlight {
            color: #28a745;
            position: relative;
        }

        .community-page .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #28a745, #20c997);
            border-radius: 2px;
        }

        .community-page .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 40px;
        }

        .community-page .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .community-page .stat {
            text-align: center;
        }

        .community-page .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #28a745;
            line-height: 1;
            margin-bottom: 5px;
        }

        .community-page .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }

        .community-page .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .community-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;
        }

        .community-page .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
            color: white;
        }

        .community-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;
        }

        .community-page .btn-secondary:hover {
            background: #28a745;
            color: white;
            transform: translateY(-2px);
        }

        /* Dashboard Preview */
        .community-page .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .community-page .dashboard-preview {
            background: white;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
            max-width: 450px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .community-page .dashboard-header {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 20px;
        }

        .community-page .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .community-page .avatar {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .community-page .user-name {
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }

        .community-page .user-status {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .community-page .dashboard-nav {
            display: flex;
            gap: 20px;
        }

        .community-page .nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .community-page .nav-item.active {
            background: rgba(255, 255, 255, 0.2);
        }

        .community-page .dashboard-content {
            padding: 20px;
        }

        .community-page .forum-post {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 15px;
        }

        .community-page .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .community-page .post-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .community-page .author-avatar {
            width: 30px;
            height: 30px;
            background: #28a745;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .community-page .author-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: #212529;
        }

        .community-page .post-time {
            font-size: 0.7rem;
            color: #6c757d;
        }

        .community-page .post-category {
            background: #28a745;
            color: white;
            padding: 4px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .community-page .post-content h4 {
            font-size: 0.9rem;
            color: #212529;
            margin-bottom: 5px;
        }

        .community-page .post-content p {
            font-size: 0.8rem;
            color: #6c757d;
            margin-bottom: 10px;
        }

        .community-page .post-stats {
            display: flex;
            gap: 15px;
            font-size: 0.7rem;
            color: #6c757d;
        }

        .community-page .post-stats i {
            color: #28a745;
        }

        .community-page .exclusive-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            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: 5px;
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        /* Community Features */
        .community-page .community-features {
            padding: 70px 20px;
            background: #ffffff;
        }

        .community-page .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .community-page .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .community-page .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .community-page .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .community-page .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .community-page .feature-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;
        }

        .community-page .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .community-page .feature-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;
        }

        .community-page .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .community-page .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
        }

        .community-page .feature-card p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .community-page .feature-highlights {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: center;
        }

        .community-page .highlight-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #495057;
        }

        .community-page .highlight-item i {
            color: #28a745;
            font-size: 0.8rem;
        }

        /* AI Experts */
        .community-page .ai-experts {
            padding: 70px 20px;
            background: #ffffff;
        }

        .community-page .experts-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .community-page .experts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
        }

        .community-page .expert-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .community-page .expert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .community-page .expert-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .community-page .expert-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .community-page .expert-avatar.legal {
            background: linear-gradient(135deg, #dc3545, #c82333);
        }

        .community-page .expert-info h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 5px;
        }

        .community-page .expert-title {
            font-size: 0.9rem;
            color: #6c757d;
        }

        .community-page .expert-status {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: #28a745;
            font-weight: 500;
        }

        .community-page .expert-status.online i {
            color: #28a745;
            font-size: 0.6rem;
        }

        .community-page .expert-description {
            margin-bottom: 20px;
        }

        .community-page .expert-description p {
            color: #6c757d;
            line-height: 1.6;
        }

        .community-page .expert-specialties h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .community-page .specialties-list {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .community-page .specialty {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .community-page .chat-preview {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .community-page .chat-message {
            margin-bottom: 10px;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .community-page .chat-message.user {
            background: #28a745;
            color: white;
            margin-left: 40px;
        }

        .community-page .chat-message.ai {
            background: white;
            color: #495057;
            margin-right: 40px;
            border: 1px solid #e9ecef;
        }

        .community-page .expert-cta {
            text-align: center;
        }

        .community-page .btn-expert {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .community-page .btn-expert:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
            color: white;
        }

        /* Community Benefits */
        .community-page .community-benefits {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .community-page .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .community-page .benefits-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: flex-start;
        }

        .community-page .benefits-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .community-page .benefits-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .community-page .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .community-page .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .community-page .benefit-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;
        }

        .community-page .benefit-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .community-page .benefit-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 5px;
        }

        .community-page .benefit-content p {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.5;
        }

        .community-page .benefits-visual {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .community-page .community-stats {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .community-page .stat-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            text-align: center;
        }

        .community-page .stat-card .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .community-page .stat-card .stat-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .community-page .stat-card .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #28a745;
            line-height: 1;
            margin-bottom: 5px;
        }

        .community-page .stat-card .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }

        /* Community CTA */
        .community-page .community-cta {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .community-page .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .community-page .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .community-page .cta-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .community-page .cta-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .community-page .cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #495057;
            font-weight: 500;
        }

        .community-page .cta-feature i {
            color: #28a745;
            font-size: 1rem;
        }

        .community-page .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .community-page .cta-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .community-page .cta-note i {
            color: #28a745;
        }

        /* FAQ Section */
        .community-page .community-faq {
            padding: 70px 20px;
            background: #ffffff;
        }

        .community-page .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .community-page .faq-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .community-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;
        }

        .community-page .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }

        .community-page .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .community-page .faq-question:hover {
            background: #f8f9fa;
        }

        .community-page .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
            line-height: 1.4;
            flex: 1;
            padding-right: 20px;
        }

        .community-page .faq-question i {
            color: #28a745;
            font-size: 1rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .community-page .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .community-page .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .community-page .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .community-page .faq-answer p {
            padding: 0 30px 25px;
            margin: 0;
            color: #6c757d;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .community-page .hero-content,
            .community-page .benefits-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .community-page .hero-title {
                font-size: 2.5rem;
            }

            .community-page .section-title,
            .community-page .benefits-title,
            .community-page .cta-title {
                font-size: 2rem;
            }

            .community-page .hero-stats {
                justify-content: center;
            }

            .community-page .experts-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .community-page .community-hero {
                padding: 100px 20px 50px;
            }

            .community-page .hero-title {
                font-size: 2rem;
            }

            .community-page .features-grid {
                grid-template-columns: 1fr;
            }

            .community-page .hero-cta,
            .community-page .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .community-page .btn-primary,
            .community-page .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .community-page .cta-features {
                flex-direction: column;
                gap: 15px;
            }

            .community-page .hero-stats {
                gap: 20px;
            }

            .community-page .stat-number {
                font-size: 2rem;
            }

            .community-page .expert-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .community-page .hero-title {
                font-size: 1.8rem;
            }

            .community-page .section-title {
                font-size: 1.8rem;
            }

            .community-page .feature-card,
            .community-page .expert-card {
                padding: 25px 20px;
            }

            .community-page .dashboard-preview {
                max-width: 320px;
            }

            .community-page .dashboard-header {
                padding: 15px;
            }

            .community-page .dashboard-content {
                padding: 15px;
            }

            .community-page .experts-grid {
                grid-template-columns: 1fr;
            }

            .community-page .expert-card {
                min-width: auto;
            }
        }