
        .hero-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 8rem 2rem 4rem;
            text-align: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-icon {
            margin-bottom: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        .hero-title {
            font-family: 'Comic Neue', cursive;
            font-size: 3rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1rem;
            max-width: 800px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hero-cta {
            background: #dc2626;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }

        .hero-cta:hover {
            background: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
        }

        .historia-section {
            background: white;
            padding: 4rem 2rem;
        }

        .historia-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-family: 'Comic Neue', cursive;
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 2rem;
        }

        .historia-description {
            font-size: 1.2rem;
            color: #4b5563;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .source-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .source-link {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 1rem 1.5rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
        }

        .source-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
        }

        .reakcje-section {
            background: #f8fafc;
            padding: 4rem 2rem;
        }

        .reakcje-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .quotes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .quote-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .quote-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .quote-card.jedrzejak {
            border-left: 4px solid #1e3a8a;
        }

        .quote-card.szczerk {
            border-left: 4px solid #dc2626;
        }

        .quote-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .quote-card.jedrzejak .quote-text {
            color: #1e3a8a;
        }

        .quote-card.szczerk .quote-text {
            color: #dc2626;
        }

        .quote-author {
            font-weight: 700;
            font-size: 1rem;
            text-align: right;
        }

        .frazeologizm-section {
            background: white;
            padding: 4rem 2rem;
        }

        .frazeologizm-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .definition-container {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            border-left: 6px solid #dc2626;
        }

        .definition-title {
            font-family: 'Comic Neue', cursive;
            font-size: 1.5rem;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 1rem;
        }

        .definition-text {
            font-size: 1.2rem;
            color: #374151;
            font-weight: 600;
        }

        .examples-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .example-bubble {
            background: #fef3c7;
            padding: 1.5rem;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1.1rem;
            color: #92400e;
        }

        .example-bubble::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 2rem;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid #fef3c7;
        }

        .edukacyjna-section {
            background: linear-gradient(135deg, #f8fafc 0%, #1e3a8a 100%);
            padding: 4rem 2rem;
            color: white;
            text-align: center;
        }

        .edukacyjna-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .edukacyjna-title {
            font-family: 'Comic Neue', cursive;
            font-size: 3rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .edukacyjna-text {
            font-size: 1.3rem;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .cap-icon {
            display: inline-block;
            margin: 0 1rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-left {
            animation: slideInLeft 0.8s ease-out;
        }

        .animate-right {
            animation: slideInRight 0.8s ease-out;
        }

        .animate-up {
            animation: fadeInUp 0.8s ease-out;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .quotes-container {
                grid-template-columns: 1fr;
            }

            .source-links {
                flex-direction: column;
                align-items: center;
            }

            .examples-container {
                grid-template-columns: 1fr;
            }

            .edukacyjna-title {
                font-size: 2rem;
            }

            .edukacyjna-text {
                font-size: 1.1rem;
            }
        }
    