/* ===============================   Hero Section  ================================== */


 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Sprache Section */
        .sprache {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
            display: flex;
            align-items: center;
            padding: 80px 20px;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .sprache::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        .sprache::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            animation: rotate 40s linear infinite reverse;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Floating Shapes */
        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }

        .shape-1 {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #fbbf24, #f59e0b);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 180px;
            height: 180px;
            background: linear-gradient(225deg, #10b981, #059669);
            border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
            bottom: 15%;
            left: 20%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, -30px) rotate(90deg); }
            50% { transform: translate(0, -60px) rotate(180deg); }
            75% { transform: translate(-30px, -30px) rotate(270deg); }
        }

        /* Content Container */
        .sprache-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        /* Text Section */
        .sprache-text {
            animation: slideInLeft 1s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .sprache-text h1 {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            margin-bottom: 30px;
            line-height: 1.1;
            text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .sprache-text h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 120px;
            height: 6px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            border-radius: 3px;
            animation: expandLine 1s ease 0.5s both;
        }

        @keyframes expandLine {
            from { width: 0; }
            to { width: 120px; }
        }

        .sprache-text p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            margin-bottom: 40px;
            margin-top: 30px;
            animation: fadeIn 1s ease 0.3s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Features List */
        .features-list {
            list-style: none;
            margin-bottom: 40px;
            animation: fadeIn 1s ease 0.6s both;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .features-list li:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }

        .features-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 50%;
            font-weight: bold;
            color: white;
            flex-shrink: 0;
        }

        /* Button */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e3a8a;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease 0.9s both;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.6);
        }

        .btn-primary::after {
            content: '→';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover::after {
            transform: translateX(5px);
        }

        /* Image Section */
        .sprache-image {
            position: relative;
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .image-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.02);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .image-wrapper:hover::before {
            opacity: 1;
        }

        .sprache-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-wrapper:hover img {
            transform: scale(1.05);
        }

        /* Decorative Elements */
        .image-decoration {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            opacity: 0.3;
            z-index: -1;
        }

        .decoration-1 {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            top: -30px;
            right: -30px;
            animation: pulse 3s infinite;
        }

        .decoration-2 {
            background: linear-gradient(225deg, #ef4444, #dc2626);
            bottom: -30px;
            left: -30px;
            animation: pulse 3s infinite 1.5s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
        }

        /* Stats Badge */
        .stats-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 2;
            animation: slideInDown 1s ease 0.5s both;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats-badge-content {
            text-align: center;
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stats-label {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .sprache-content {
                grid-template-columns: 1fr;
                gap: 60px;
                padding: 0 20px;
            }

            .sprache-text h1 {
                font-size: 3rem;
            }

            .image-wrapper {
                transform: perspective(1000px) rotateY(0deg);
            }
        }

        @media (max-width: 768px) {
            .sprache {
                padding: 60px 20px;
            }

            .sprache-text h1 {
                font-size: 2.5rem;
            }

            .sprache-text p {
                font-size: 1.2rem;
            }

            .btn-primary {
                width: 100%;
                justify-content: center;
                padding: 18px 40px;
            }

            .stats-badge {
                position: static;
                margin: 20px auto;
                width: fit-content;
            }
        }

        @media (max-width: 480px) {
            .sprache-text h1 {
                font-size: 2rem;
            }

            .sprache-text p {
                font-size: 1.1rem;
            }

            .features-list li {
                font-size: 1rem;
            }
        }





/* ===============================   SPRACHKURSE SECTION ================================== */





  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
            color: #1a1a1a;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            animation: fadeInUp 0.8s ease;
        }

        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Language Grid */
        .language-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-bottom: 80px;
        }

        .language-card {
            background: white;
            border-radius: 35px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(102, 126, 234, 0.12);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid rgba(102, 126, 234, 0.08);
        }

        .card-image-wrapper {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .language-card:hover .card-image {
            transform: scale(1.08);
        }

        .card-content {
            padding: 45px;
        }

        .language-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 320px;
            background: linear-gradient(180deg, rgba(102, 126, 234, 0.15) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
            pointer-events: none;
        }

        .language-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 35px 90px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .language-card:hover::before {
            opacity: 1;
        }

        .level-badge {
            position: absolute;
            top: 25px;
            left: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        .level-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 23px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
            transition: all 0.4s ease;
            position: relative;
        }

        .level-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            border-radius: 23px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .language-card:hover .level-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .language-card:hover .level-icon::after {
            opacity: 1;
        }

        .level-icon i {
            font-size: 2.2rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .language-card h3 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .level-name {
            font-size: 1.15rem;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .language-description {
            font-size: 1.12rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.9;
        }

        .card-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
            margin: 25px 0;
        }

        .language-features {
            list-style: none;
            margin-bottom: 35px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .language-features li {
            padding: 14px 18px;
            font-size: 1rem;
            color: #444;
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-radius: 12px;
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
        }

        .language-features li:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateX(5px);
        }

        .language-features li:hover i {
            color: white;
        }

        .language-features i {
            color: #667eea;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .btn-course {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.35);
            position: relative;
            overflow: hidden;
        }

        .btn-course::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-course:hover::before {
            left: 100%;
        }

        .btn-course:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 45px rgba(102, 126, 234, 0.45);
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 30px;
            padding: 60px;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-banner-content {
            position: relative;
            z-index: 1;
        }

        .cta-banner h3 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .cta-banner p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: #667eea;
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
            border-radius: 25px;
            transition: all 0.3s ease;
            border: 2px solid rgba(102, 126, 234, 0.1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: #666;
            font-weight: 600;
        }

        /* Specialized Section */
        .specialized-section {
            margin-top: 80px;
        }

        .specialized-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .specialized-header h3 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .specialized-header p {
            font-size: 1.2rem;
            color: #666;
        }

        .specialized-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .specialized-card {
            background: white;
            padding: 0;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(102, 126, 234, 0.1);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.08);
            overflow: hidden;
        }

        .specialized-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .specialized-card-content {
            padding: 35px 30px;
        }

        .specialized-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .specialized-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: transform 0.4s ease;
            position: relative;
            top: -35px;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .specialized-card:hover .specialized-icon {
            transform: scale(1.15) rotate(-5deg);
        }

        .specialized-icon i {
            font-size: 2rem;
            color: white;
        }

        .specialized-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            margin-top: -15px;
        }

        .specialized-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* More Info Button */
        .more-info-section {
            text-align: center;
            margin-top: 60px;
            padding-top: 40px;
        }

        .btn-more-info {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        }

        .btn-more-info:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1200px) {
            .specialized-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .language-card h3 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 968px) {
            .language-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .language-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .specialized-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .container {
                padding: 40px 20px;
            }

            .card-content {
                padding: 35px 25px;
            }

            .language-card h3 {
                font-size: 2rem;
            }

            .cta-banner {
                padding: 40px 30px;
            }
        }





