* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SoehneLeicht', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #F8F9FA;
        }

        .cta-section {
            padding: 80px 25px;
            background: #F8F9FA;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-card {
            /*background: linear-gradient(135deg, #8B9A9E 0%, #A8B5B8 100%);*/
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            min-height: 450px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 100px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .cta-background {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .cta-background::after {
            content: '';
            position: absolute;
            top: 0;
          /*  right: 0;*/
            bottom: 0;
            left: 0;
            background: linear-gradient(to left, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.4) 100%);
            backdrop-filter: blur(0px) blur(8px);
          /*  -webkit-backdrop-filter: blur(0px) blur(8px);
            mask-image: linear-gradient(to right, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 70%, black 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 70%, black 100%);*/
        }

        .cta-background img {
            width: 100%;
            height: 100%;
          /*  object-fit: cover;*/
          /*  opacity: 0.9;
            filter: blur(0px);
            mask-image: linear-gradient(to right, black 0%, black 40%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);*/
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: left;
            color: white;
            padding: 60px 40px;
            max-width: 550px;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        }

        .cta-subtitle {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 36px;
            opacity: 0.95;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: white;
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            background: #f5f5f5;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 25px;
            }

            .cta-card {
                min-height: 400px;
                justify-content: center;
                padding-left: 0;
            }

            .cta-content {
                padding: 40px 30px;
                text-align: center;
            }

            .cta-title {
                font-size: 36px;
                margin-bottom: 12px;
            }

            .cta-subtitle {
                font-size: 16px;
                margin-bottom: 28px;
            }

            .cta-btn {
                padding: 14px 32px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .cta-section {
                padding: 50px 20px;
            }

            .cta-card {
                min-height: 380px;
                border-radius: 20px;
            }

            .cta-content {
                padding: 40px 25px;
                text-align: center;
            }

            .cta-title {
                font-size: 32px;
            }

            .cta-subtitle {
                font-size: 15px;
                margin-bottom: 24px;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 28px;
                font-size: 14px;
            }
        }