HEX
Server: Apache/2.4.65 (Debian)
System: Linux srv39710 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
User: root (0)
PHP: 8.4.11
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
Upload Files
File: /var/www/www-root/data/www/automoon.click/site1/dir.html2
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>LoveConnect - Find Your Soulmate</title>
    <link rel="stylesheet" href="/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #ff4b7d;
            --secondary: #6a11cb;
            --accent: #ff8e53;
            --dark: #333;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .language-switcher {
            display: flex;
            gap: 10px;
        }
        
        .language-switcher a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .language-switcher a:hover, .language-switcher a.active {
            background: rgba(255, 255, 255, 0.4);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 18px 45px;
            font-size: 1.4rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            margin: 20px 0;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: var(--light);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--gray);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: white;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 20px;
            position: relative;
        }
        
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -10px;
            width: 50%;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--accent));
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step p {
            color: var(--gray);
        }
        
        /* Final CTA */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .final-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .cta-button {
                font-size: 1.2rem;
                padding: 15px 35px;
                position: fixed;
                bottom: 30px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 10;
                width: 90%;
                max-width: 300px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }
            
            .hero {
                padding-bottom: 150px;
            }
            
            .steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
            
            .language-switcher {
                flex-direction: column;
                gap: 5px;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <div class="container">
            <div class="header-content">
                <div class="logo">
                    <i class="fas fa-heart"></i>
                    LoveConnect
                </div>
                <div class="language-switcher">
                    <a href="#" class="lang-ru">RU</a>
                    <a href="#" class="lang-en active">EN</a>
                </div>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="container">
            <div class="hero-content">
                <h1>Find Your Soulmate</h1>
                <p>LoveConnect is a modern dating platform where thousands of lonely hearts find their love. Join our community today!</p>
                <a href="" class="cta-button">START DATING FOR FREE</a>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="features">
        <div class="container">
            <div class="section-title">
                <h2>Why Choose LoveConnect</h2>
                <p>We created the perfect platform for finding serious relationships</p>
            </div>
            <div class="features-grid">
                <div class="feature-card">
                    <div class="feature-icon">
                        <i class="fas fa-users"></i>
                    </div>
                    <h3>Large Audience</h3>
                    <p>Over 500,000 active users across the country. Find someone with common interests and values.</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon">
                        <i class="fas fa-shield-alt"></i>
                    </div>
                    <h3>Security</h3>
                    <p>All profiles are verified by moderators. Your personal data is protected and not shared with third parties.</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon">
                        <i class="fas fa-brain"></i>
                    </div>
                    <h3>Smart Matching</h3>
                    <p>Our algorithm analyzes your interests and preferences to suggest the most suitable partners.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- How It Works -->
    <section class="how-it-works">
        <div class="container">
            <div class="section-title">
                <h2>How It Works</h2>
                <p>Just 4 simple steps to meet your soulmate</p>
            </div>
            <div class="steps">
                <div class="step">
                    <div class="step-number">1</div>
                    <h3>Create Profile</h3>
                    <p>Register and tell about yourself, your interests and preferences in a partner.</p>
                </div>
                <div class="step">
                    <div class="step-number">2</div>
                    <h3>Find Matches</h3>
                    <p>Our algorithm will match you with people with similar interests and relationship goals.</p>
                </div>
                <div class="step">
                    <div class="step-number">3</div>
                    <h3>Communicate</h3>
                    <p>Start chatting with people you like through our secure messenger.</p>
                </div>
                <div class="step">
                    <div class="step-number">4</div>
                    <h3>Meet Up</h3>
                    <p>Arrange a meeting in real life and start a new relationship.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials -->
    <section class="testimonials">
        <div class="container">
            <div class="section-title">
                <h2>Success Stories</h2>
                <p>Thousands of couples have already found their love thanks to LoveConnect</p>
            </div>
            <div class="testimonials-grid">
                <div class="testimonial-card">
                    <div class="testimonial-content">
                        "I had almost lost hope of finding a serious relationship until I registered on LoveConnect. A month later I met Andrew, and now we are planning a wedding!"
                    </div>
                    <div class="testimonial-author">
                        <div class="author-avatar">AS</div>
                        <div class="author-info">
                            <h4>Anna S.</h4>
                            <p>In a relationship for 1 year</p>
                        </div>
                    </div>
                </div>
                <div class="testimonial-card">
                    <div class="testimonial-content">
                        "After moving to a new city, it was difficult to find new friends, let alone relationships. LoveConnect helped me not only find love but also expand my social circle."
                    </div>
                    <div class="testimonial-author">
                        <div class="author-avatar">MK</div>
                        <div class="author-info">
                            <h4>Maxim K.</h4>
                            <p>In a relationship for 8 months</p>
                        </div>
                    </div>
                </div>
                <div class="testimonial-card">
                    <div class="testimonial-content">
                        "My husband and I met here 3 years ago. At first we just communicated as friends, but gradually we realized that we had found a kindred spirit in each other. Thank you LoveConnect!"
                    </div>
                    <div class="testimonial-author">
                        <div class="author-avatar">OL</div>
                        <div class="author-info">
                            <h4>Olga L.</h4>
                            <p>Married for 2 years</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Final CTA -->
    <section class="final-cta">
        <div class="container">
            <h2>Join LoveConnect Today</h2>
            <p>Start your journey to a happy relationship right now. Registration takes only 2 minutes and is completely free.</p>
            <a href="" class="cta-button">CREATE PROFILE</a>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-column">
                    <h3>LoveConnect</h3>
                    <p>A modern dating platform for finding serious relationships. We help people find love since 2018.</p>
                </div>
                <div class="footer-column">
                    <h3>Navigation</h3>
                    <ul class="footer-links">
                        <li><a href="#">Home</a></li>
                        <li><a href="#">About Us</a></li>
                        <li><a href="#">Premium</a></li>
                        <li><a href="#">Blog</a></li>
                        <li><a href="#">Help</a></li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>Legal Information</h3>
                    <ul class="footer-links">
                        <li><a href="#">Privacy Policy</a></li>
                        <li><a href="#">Terms of Use</a></li>
                        <li><a href="#">Community Rules</a></li>
                        <li><a href="#">Cookie</a></li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>Contacts</h3>
                    <ul class="footer-links">
                        <li><a href="#">support@loveconnect</a></li>
                        <li><a href="#">+1 (800) 123-45-67</a></li>
                        <li><a href="#">New York, Example St, 15</a></li>
                    </ul>
                </div>
            </div>
            <div class="copyright">
                <p>&copy; 2023 LoveConnect. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        // Простая функция для переключения языков
        document.querySelectorAll('.language-switcher a').forEach(link => {
            link.addEventListener('click', function(e) {
                e.preventDefault();
                
                // Убираем активный класс у всех ссылок
                document.querySelectorAll('.language-switcher a').forEach(a => {
                    a.classList.remove('active');
                });
                
                // Добавляем активный класс текущей ссылке
                this.classList.add('active');
                
                // Определяем выбранный язык
                const lang = this.textContent.trim();
                
                if (lang === 'RU') {
                    // Русская версия
                    document.querySelector('html').setAttribute('lang', 'ru');
                    document.querySelector('title').textContent = 'LoveConnect - Найди свою вторую половинку';
                    document.querySelector('.logo').innerHTML = '<i class="fas fa-heart"></i>LoveConnect';
                    document.querySelector('.hero h1').textContent = 'Найди свою вторую половинку';
                    document.querySelector('.hero p').textContent = 'LoveConnect - это современная платформа для знакомств, где тысячи одиноких сердец находят свою любовь. Присоединяйся к нашему сообществу сегодня!';
                    document.querySelector('.cta-button').textContent = 'НАЧАТЬ ЗНАКОМСТВА БЕСПЛАТНО';
                    document.querySelector('.section-title h2').textContent = 'Почему выбирают LoveConnect';
                    document.querySelectorAll('.section-title p')[0].textContent = 'Мы создали идеальную платформу для поиска серьезных отношений';
                    document.querySelectorAll('.feature-card h3')[0].textContent = 'Большая аудитория';
                    document.querySelectorAll('.feature-card p')[0].textContent = 'Более 500 000 активных пользователей по всей стране. Найдите человека с общими интересами и ценностями.';
                    document.querySelectorAll('.feature-card h3')[1].textContent = 'Безопасность';
                    document.querySelectorAll('.feature-card p')[1].textContent = 'Все профили проходят проверку модераторами. Ваши личные данные защищены и не передаются третьим лицам.';
                    document.querySelectorAll('.feature-card h3')[2].textContent = 'Умный подбор';
                    document.querySelectorAll('.feature-card p')[2].textContent = 'Наш алгоритм анализирует ваши интересы и предпочтения, чтобы предложить наиболее подходящих партнеров.';
                    document.querySelectorAll('.section-title h2')[1].textContent = 'Как это работает';
                    document.querySelectorAll('.section-title p')[1].textContent = 'Всего 4 простых шага до встречи с вашей половинкой';
                    document.querySelectorAll('.step h3')[0].textContent = 'Создайте профиль';
                    document.querySelectorAll('.step p')[0].textContent = 'Зарегистрируйтесь и расскажите о себе, своих интересах и предпочтениях в партнере.';
                    document.querySelectorAll('.step h3')[1].textContent = 'Найдите matches';
                    document.querySelectorAll('.step p')[1].textContent = 'Наш алгоритм подберет вам людей с похожими интересами и целями в отношениях.';
                    document.querySelectorAll('.step h3')[2].textContent = 'Общайтесь';
                    document.querySelectorAll('.step p')[2].textContent = 'Начните общение с понравившимися людьми через наш безопасный мессенджер.';
                    document.querySelectorAll('.step h3')[3].textContent = 'Встречайтесь';
                    document.querySelectorAll('.step p')[3].textContent = 'Договоритесь о встрече в реальной жизни и начните новые отношения.';
                    document.querySelectorAll('.section-title h2')[2].textContent = 'Истории успеха';
                    document.querySelectorAll('.section-title p')[2].textContent = 'Тысячи пар уже нашли свою любовь благодаря LoveConnect';
                    document.querySelectorAll('.testimonial-content')[0].textContent = '"Я уже почти потеряла надежду найти серьезные отношения, пока не зарегистрировалась на LoveConnect. Через месяц я познакомилась с Андреем, и сейчас мы планируем свадьбу!"';
                    document.querySelectorAll('.author-info h4')[0].textContent = 'Анна С.';
                    document.querySelectorAll('.author-info p')[0].textContent = 'В отношениях 1 год';
                    document.querySelectorAll('.testimonial-content')[1].textContent = '"После переезда в новый город было сложно найти новых друзей, не говоря уже о отношениях. LoveConnect помог мне не только найти любовь, но и расширить круг общения."';
                    document.querySelectorAll('.author-info h4')[1].textContent = 'Максим К.';
                    document.querySelectorAll('.author-info p')[1].textContent = 'В отношениях 8 месяцев';
                    document.querySelectorAll('.testimonial-content')[2].textContent = '"Мы с мужем познакомились здесь 3 года назад. Сначала просто общались как друзья, но постепенно поняли, что нашли друг в друге родственную душу. Спасибо LoveConnect!"';
                    document.querySelectorAll('.author-info h4')[2].textContent = 'Ольга Л.';
                    document.querySelectorAll('.author-info p')[2].textContent = 'Замужем 2 года';
                    document.querySelector('.final-cta h2').textContent = 'Присоединяйтесь к LoveConnect сегодня';
                    document.querySelector('.final-cta p').textContent = 'Начните свой путь к счастливым отношениям прямо сейчас. Регистрация занимает всего 2 минуты и абсолютно бесплатна.';
                    document.querySelectorAll('.cta-button')[1].textContent = 'СОЗДАТЬ ПРОФИЛЬ';
                    document.querySelectorAll('.footer-column h3')[0].textContent = 'LoveConnect';
                    document.querySelectorAll('.footer-column p')[0].textContent = 'Современная платформа для знакомств и поиска серьезных отношений. Мы помогаем людям находить любовь с 2018 года.';
                    document.querySelectorAll('.footer-column h3')[1].textContent = 'Навигация';
                    document.querySelectorAll('.footer-links a')[0].textContent = 'Главная';
                    document.querySelectorAll('.footer-links a')[1].textContent = 'О нас';
                    document.querySelectorAll('.footer-links a')[2].textContent = 'Премиум';
                    document.querySelectorAll('.footer-links a')[3].textContent = 'Блог';
                    document.querySelectorAll('.footer-links a')[4].textContent = 'Помощь';
                    document.querySelectorAll('.footer-column h3')[2].textContent = 'Правовая информация';
                    document.querySelectorAll('.footer-links a')[5].textContent = 'Политика конфиденциальности';
                    document.querySelectorAll('.footer-links a')[6].textContent = 'Условия использования';
                    document.querySelectorAll('.footer-links a')[7].textContent = 'Правила сообщества';
                    document.querySelectorAll('.footer-links a')[8].textContent = 'Cookie';
                    document.querySelectorAll('.footer-column h3')[3].textContent = 'Контакты';
                    document.querySelectorAll('.footer-links a')[9].textContent = 'support@loveconnect.com';
                    document.querySelectorAll('.footer-links a')[10].textContent = '+7 (800) 123-45-67';
                    document.querySelectorAll('.footer-links a')[11].textContent = 'Москва, ул. Примерная, 15';
                    document.querySelector('.copyright p').textContent = '© 2023 LoveConnect. Все права защищены.';
                } else {
                    // Английская версия (по умолчанию)
                    document.querySelector('html').setAttribute('lang', 'en');
                    document.querySelector('title').textContent = 'LoveConnect - Find Your Soulmate';
                    document.querySelector('.logo').innerHTML = '<i class="fas fa-heart"></i>LoveConnect';
                    document.querySelector('.hero h1').textContent = 'Find Your Soulmate';
                    document.querySelector('.hero p').textContent = 'LoveConnect is a modern dating platform where thousands of lonely hearts find their love. Join our community today!';
                    document.querySelector('.cta-button').textContent = 'START DATING FOR FREE';
                    document.querySelector('.section-title h2').textContent = 'Why Choose LoveConnect';
                    document.querySelectorAll('.section-title p')[0].textContent = 'We created the perfect platform for finding serious relationships';
                    document.querySelectorAll('.feature-card h3')[0].textContent = 'Large Audience';
                    document.querySelectorAll('.feature-card p')[0].textContent = 'Over 500,000 active users across the country. Find someone with common interests and values.';
                    document.querySelectorAll('.feature-card h3')[1].textContent = 'Security';
                    document.querySelectorAll('.feature-card p')[1].textContent = 'All profiles are verified by moderators. Your personal data is protected and not shared with third parties.';
                    document.querySelectorAll('.feature-card h3')[2].textContent = 'Smart Matching';
                    document.querySelectorAll('.feature-card p')[2].textContent = 'Our algorithm analyzes your interests and preferences to suggest the most suitable partners.';
                    document.querySelectorAll('.section-title h2')[1].textContent = 'How It Works';
                    document.querySelectorAll('.section-title p')[1].textContent = 'Just 4 simple steps to meet your soulmate';
                    document.querySelectorAll('.step h3')[0].textContent = 'Create Profile';
                    document.querySelectorAll('.step p')[0].textContent = 'Register and tell about yourself, your interests and preferences in a partner.';
                    document.querySelectorAll('.step h3')[1].textContent = 'Find Matches';
                    document.querySelectorAll('.step p')[1].textContent = 'Our algorithm will match you with people with similar interests and relationship goals.';
                    document.querySelectorAll('.step h3')[2].textContent = 'Communicate';
                    document.querySelectorAll('.step p')[2].textContent = 'Start chatting with people you like through our secure messenger.';
                    document.querySelectorAll('.step h3')[3].textContent = 'Meet Up';
                    document.querySelectorAll('.step p')[3].textContent = 'Arrange a meeting in real life and start a new relationship.';
                    document.querySelectorAll('.section-title h2')[2].textContent = 'Success Stories';
                    document.querySelectorAll('.section-title p')[2].textContent = 'Thousands of couples have already found their love thanks to LoveConnect';
                    document.querySelectorAll('.testimonial-content')[0].textContent = '"I had almost lost hope of finding a serious relationship until I registered on LoveConnect. A month later I met Andrew, and now we are planning a wedding!"';
                    document.querySelectorAll('.author-info h4')[0].textContent = 'Anna S.';
                    document.querySelectorAll('.author-info p')[0].textContent = 'In a relationship for 1 year';
                    document.querySelectorAll('.testimonial-content')[1].textContent = '"After moving to a new city, it was difficult to find new friends, let alone relationships. LoveConnect helped me not only find love but also expand my social circle."';
                    document.querySelectorAll('.author-info h4')[1].textContent = 'Maxim K.';
                    document.querySelectorAll('.author-info p')[1].textContent = 'In a relationship for 8 months';
                    document.querySelectorAll('.testimonial-content')[2].textContent = '"My husband and I met here 3 years ago. At first we just communicated as friends, but gradually we realized that we had found a kindred spirit in each other. Thank you LoveConnect!"';
                    document.querySelectorAll('.author-info h4')[2].textContent = 'Olga L.';
                    document.querySelectorAll('.author-info p')[2].textContent = 'Married for 2 years';
                    document.querySelector('.final-cta h2').textContent = 'Join LoveConnect Today';
                    document.querySelector('.final-cta p').textContent = 'Start your journey to a happy relationship right now. Registration takes only 2 minutes and is completely free.';
                    document.querySelectorAll('.cta-button')[1].textContent = 'CREATE PROFILE';
                    document.querySelectorAll('.footer-column h3')[0].textContent = 'LoveConnect';
                    document.querySelectorAll('.footer-column p')[0].textContent = 'A modern dating platform for finding serious relationships. We help people find love since 2018.';
                    document.querySelectorAll('.footer-column h3')[1].textContent = 'Navigation';
                    document.querySelectorAll('.footer-links a')[0].textContent = 'Home';
                    document.querySelectorAll('.footer-links a')[1].textContent = 'About Us';
                    document.querySelectorAll('.footer-links a')[2].textContent = 'Premium';
                    document.querySelectorAll('.footer-links a')[3].textContent = 'Blog';
                    document.querySelectorAll('.footer-links a')[4].textContent = 'Help';
                    document.querySelectorAll('.footer-column h3')[2].textContent = 'Legal Information';
                    document.querySelectorAll('.footer-links a')[5].textContent = 'Privacy Policy';
                    document.querySelectorAll('.footer-links a')[6].textContent = 'Terms of Use';
                    document.querySelectorAll('.footer-links a')[7].textContent = 'Community Rules';
                    document.querySelectorAll('.footer-links a')[8].textContent = 'Cookie';
                    document.querySelectorAll('.footer-column h3')[3].textContent = 'Contacts';
                    document.querySelectorAll('.footer-links a')[9].textContent = 'support@loveconnect.com';
                    document.querySelectorAll('.footer-links a')[10].textContent = '+1 (800) 123-43-86';
                    document.querySelectorAll('.footer-links a')[11].textContent = 'New York, Hausman st. 50';
                    document.querySelector('.copyright p').textContent = '© 2023 LoveConnect. All rights reserved.';
                }
            });
        });
    </script>
</body>
</html>