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

        :root {
            --primary: #1b5d3f;
            --accent: #2d8659;
            --dark: #0f3d24;
            --light: #f8f6f2;
            --text: #2d2d2d;
            --border: #e8e3db;
            --highlight: #e8f5f0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #fef9f3 0%, #f5ede4 100%);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #0a2818 100%);
            color: var(--light);
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 32px rgba(15, 61, 36, 0.2);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header h1 {
            font-size: 3rem;
            font-weight: 400;
            letter-spacing: -1px;
            margin-bottom: 0.5rem;
            font-family: 'Palatino Linotype', serif;
            color: white;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        .header-logo {
            max-width: 280px;
            height: auto;
            margin-bottom: 1.5rem;
            display: block;
            margin-left: auto;
            margin-right: auto;
            border-radius: 6px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .header-tagline {
            font-size: 1.2rem;
            color: white;
            font-weight: 300;
            letter-spacing: 0.5px;
            max-width: 600px;
            margin: 1rem auto 0;
            line-height: 1.6;
        }

        /* Main Container */
        main {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .intro-text {
            font-size: 1.1rem;
            text-align: center;
            color: var(--text);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .highlight-text {
            font-size: 1.3rem;
            text-align: center;
            color: var(--primary);
            margin-bottom: 3rem;
            font-style: italic;
            animation: fadeIn 1.2s ease-out 0.5s both;
        }

        /* Feature Section */
        .feature-section {
            margin-bottom: 4rem;
            animation: fadeIn 1.2s ease-out 0.6s both;
        }

        .feature-section h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Trebuchet MS', sans-serif;
            font-weight: 600;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--highlight);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(27, 93, 63, 0.15);
        }

        .feature-emoji {
            font-size: 2rem;
            display: block;
            min-width: 50px;
        }

        .feature-content h3 {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-family: 'Trebuchet MS', sans-serif;
        }

        .feature-content p {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.6;
        }

        /* Unique Section */
        .unique-section {
            margin-bottom: 4rem;
            animation: fadeIn 1.2s ease-out 0.8s both;
        }

        .unique-section h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Trebuchet MS', sans-serif;
            font-weight: 600;
        }

        .comparison {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: stretch;
            margin-bottom: 2rem;
        }

        .comparison-block {
            padding: 2rem;
            border-radius: 8px;
        }

        .comparison-block.old-way {
            background: #ffe8e8;
            border: 2px solid #ff6b6b;
        }

        .comparison-block.new-way {
            background: var(--highlight);
            border: 2px solid var(--primary);
        }

        .comparison-title {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .comparison-block ul {
            list-style: none;
        }

        .comparison-block li {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .comparison-arrow {
            font-size: 2rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        /* Pricing Section */
        .pricing-section {
            margin-bottom: 4rem;
            animation: fadeIn 1.2s ease-out 1s both;
        }

        .pricing-section h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Trebuchet MS', sans-serif;
            font-weight: 600;
        }

        .pricing-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            background: linear-gradient(135deg, var(--highlight) 0%, #f0faf7 100%);
            padding: 2rem;
            border-radius: 8px;
            border: 2px solid var(--primary);
        }

        .pricing-item {
            font-size: 1.05rem;
            padding: 1rem;
            text-align: center;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .pricing-item.no {
            background: rgba(255, 107, 107, 0.1);
            color: #d32f2f;
        }

        .pricing-item.yes {
            background: rgba(27, 93, 63, 0.15);
            color: var(--primary);
            font-weight: 600;
        }

        /* Audience Section */
        .audience-section {
            margin-bottom: 4rem;
            animation: fadeIn 1.2s ease-out 1.2s both;
        }

        .audience-section h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Trebuchet MS', sans-serif;
            font-weight: 600;
        }

        .audience-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .audience-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            font-size: 1rem;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .audience-item:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(27, 93, 63, 0.15);
            transform: translateY(-4px);
        }

        /* Conclusion Section */
        .conclusion-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeIn 1.2s ease-out 1.4s both;
        }

        .conclusion-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-family: 'Trebuchet MS', sans-serif;
            font-weight: 600;
            color: white;
        }

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

        .cta-text {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(255, 255, 255, 0.3);
        }

        .intro-section {
            margin-bottom: 4rem;
        }

        .languages-title {
            font-size: 1.8rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 3rem;
            margin-top: 2rem;
            font-family: 'Trebuchet MS', sans-serif;
            font-weight: 600;
            animation: fadeIn 1s ease-out 1.6s both;
        }

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

        /* Language Grid */
        .languages-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
            animation: fadeIn 1.2s ease-out 0.6s both;
        }

        .language-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .language-card::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.6s;
        }

        .language-card:hover::before {
            left: 100%;
        }

        .language-card:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 12px 30px rgba(212, 102, 58, 0.25);
        }

        .flag {
            font-size: 4rem;
            margin-bottom: 0.8rem;
            display: block;
            transition: transform 0.4s ease;
        }

        .language-card:hover .flag {
            transform: scale(1.15) rotate(-5deg);
        }

        .language-name {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--primary);
            font-family: 'Trebuchet MS', sans-serif;
            letter-spacing: 0.5px;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            font-size: 0.95rem;
            border-top: 3px solid var(--accent);
        }

        footer p {
            margin: 0.5rem 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            header p {
                font-size: 1rem;
            }

            .logo {
                font-size: 2.5rem;
            }

            .languages-container {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 1.5rem;
            }

            .intro-text {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .highlight-text {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .feature-section h2,
            .unique-section h2,
            .pricing-section h2,
            .audience-section h2,
            .conclusion-section h2 {
                font-size: 1.5rem;
            }

            .comparison {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .comparison-arrow {
                display: none;
            }

            main {
                margin: 2rem auto;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 1.5rem;
            }

            .logo {
                font-size: 2rem;
            }

            .languages-container {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
            }

            .flag {
                font-size: 3rem;
            }

            .language-name {
                font-size: 0.95rem;
            }

            .language-card {
                padding: 1rem;
            }

            .feature-section h2,
            .unique-section h2,
            .pricing-section h2,
            .audience-section h2,
            .conclusion-section h2 {
                font-size: 1.3rem;
            }

            .pricing-highlights {
                grid-template-columns: 1fr;
            }

            .audience-list {
                grid-template-columns: 1fr;
            }
        }

        /* Link styling */
        a {
            text-decoration: none;
            color: inherit;
        }

        .language-card a {
            display: block;
            width: 100%;
            height: 100%;
        }
.url a {font-size:10px; font-family: arial,verdana,sans-serif; text-decoration:underline}
.url a:hover {text-decoration:none}