
/*** T3SB identifier: t3sbsCSSassets_31387 */

/* t3sbs_assets_31387 */


        /* Stats Header */
        .stats-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
            color: white;
            padding: 15px 0;
            text-align: center;
        }

        .stats-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 10px;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-benefit {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            text-align: left;
        }

        .hero-benefit strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .cta-button {
            background: #ff6b35;
            color: white;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 16px 38px;
            margin-left: 15px;
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Problems Section */
        .problems-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c5aa0;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .problem-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 5px solid #ff6b35;
            transition: all 0.3s ease;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .problem-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .problem-card h3 {
            color: #2c5aa0;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .problem-stats {
            background: #fff3cd;
            padding: 12px;
            border-radius: 6px;
            margin-top: 15px;
            font-weight: bold;
            color: #856404;
            border-left: 3px solid #ffc107;
        }

        /* Solution Section */
        .solution-section {
            padding: 80px 0;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 12px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            border-color: #2c5aa0;
            background: white;
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
        }

        .benefit-icon {
            font-size: 2.2rem;
            margin-bottom: 15px;
            display: block;
        }

        .benefit-card h3 {
            color: #2c5aa0;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .features-section .section-title,
        .features-section .section-subtitle {
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 35px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        /* Case Studies */
        .casestudies-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .case-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .case-title {
            font-size: 1.4rem;
            color: #2c5aa0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .case-label {
            background: #e9ecef;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 15px;
            display: inline-block;
            color: #495057;
        }

        .case-quote {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #28a745;
            font-style: italic;
            margin: 20px 0;
            color: #495057;
        }

        .case-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .result-item {
            text-align: center;
            padding: 20px 10px;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-radius: 10px;
        }

        .result-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c5aa0;
            display: block;
            margin-bottom: 5px;
        }

        .result-label {
            font-size: 0.85rem;
            color: #495057;
        }

        /* Regional Focus */
        .regional-section {
            padding: 80px 0;
            background: white;
        }

        .regional-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }

        .regional-stats {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
        }

        .regional-stat {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .regional-stat:last-child {
            border-bottom: none;
        }

        .regional-benefits ul {
            list-style: none;
        }

        .regional-benefits li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.05rem;
        }

        .regional-benefits li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Packages Section */
        .packages-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .package-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .package-card.featured {
            border: 3px solid #ff6b35;
            transform: scale(1.05);
        }

        .package-card.featured::before {
            content: "⭐ EMPFOHLEN";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b35;
            color: white;
            padding: 8px 25px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
        }

        .package-title {
            color: #2c5aa0;
            font-size: 1.5rem;
            margin-bottom: 15px;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .package-price {
            font-size: 2.8rem;
            font-weight: bold;
            color: #2c5aa0;
            margin-bottom: 8px;
        }

        .package-subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 0.9rem;
            min-height: 40px;
        }

        .package-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.95rem;
        }

        .package-features li:before {
            content: "✓ ";
            color: #28a745;
            font-weight: bold;
            margin-right: 8px;
        }

        /* Trust Elements */
        .trust-section {
            padding: 60px 0;
            background: white;
            text-align: center;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .trust-item {
            text-align: center;
        }

        .trust-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #2c5aa0;
        }

        .trust-item h4 {
            color: #2c5aa0;
            margin-bottom: 8px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .faq-grid {
            max-width: 900px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #2c5aa0;
            color: white;
            padding: 25px 60px 25px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #234a82;
        }

        .faq-question::after {
            content: "+";
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            font-weight: normal;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: "−";
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 25px;
            max-height: 500px;
        }

        .faq-answer p {
            line-height: 1.8;
            color: #495057;
        }

        /* Contact Form */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
            color: white;
            text-align: center;
        }

        .contact-section .section-title {
            color: white;
        }

        .form-container {
            max-width: 700px;
            margin: 50px auto 0;
            background: rgba(255, 255, 255, 0.95);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .form-container h3 {
            color: #2c5aa0;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .form-intro {
            color: #666;
            margin-bottom: 30px;
            font-size: 1.05rem;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2c5aa0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            background: #ff6b35;
            color: white;
            padding: 18px 50px;
            border: none;
            border-radius: 8px;
            font-size: 1.15rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        }

        .form-benefits {
            margin-top: 25px;
            padding: 20px;
            background: #e8f5e9;
            border-radius: 10px;
            text-align: left;
            color: #333;
        }

        .form-benefits ul {
            list-style: none;
            margin-top: 12px;
        }

        .form-benefits li {
            padding: 6px 0;
            padding-left: 25px;
            position: relative;
        }

        .form-benefits li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

        .form-privacy {
            margin-top: 20px;
            font-size: 0.85rem;
            color: #666;
            line-height: 1.5;
        }


        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .stats-grid {
                gap: 20px;
            }

            .regional-content {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-container {
                padding: 30px 20px;
            }

            .cta-secondary {
                margin-left: 0;
                margin-top: 15px;
                display: block;
            }

            .package-card.featured {
                transform: none;
            }
        }

        .highlight {
            color: #ff6b35;
            font-weight: bold;
        }

        /* Sticky CTA Button (Mobile) */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: none;
        }

        @media (max-width: 768px) {
            .sticky-cta {
                display: block;
            }
        }

        /* Success Message */
        .success-message {
            background: #d4edda;
            border: 2px solid #28a745;
            color: #155724;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            display: none;
        }

        .success-message.show {
            display: block;
        }
	

