﻿html
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Работа в Европе | Рекрутинговое агентство</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            /* Фон лендинга */
            background: url('1.png') no-repeat center center fixed;
            background-size: cover;
            color: #333333;
            line-height: 1.6;
        }

        .wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            box-sizing: border-box;
            /* Белая подложка для читаемости текста */
            background: rgba(255, 255, 255, 0.85); 
        }

        header {
            text-align: center;
            margin-bottom: 40px;
        }

        .logo {
            max-width: 150px;
            margin-bottom: 20px;
        }

        .headline-text {
            font-size: clamp(26px, 5vw, 40px);
            font-weight: bold;
            color: #000;
            margin: 0 0 10px 0;
        }

        .message-text {
            font-size: 18px;
            color: #444;
            max-width: 600px;
            margin: 0 auto;
        }

        .button-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            /* ЗНАЧИТЕЛЬНО ШИРЕ: 550px */
            max-width: 550px; 
            margin: 0 auto;
        }

        .button-shape {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 65px; /* Высокие кнопки */
            border-radius: 50px;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .button-shape:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            filter: brightness(1.05);
        }

        /* Цвета кнопок */
        .tg-color {
            background-color: #0088cc;
            color: #ffffff;
        }

        .wa-color {
            background-color: #25D366;
            color: #ffffff;
        }

        /* Нижний блок текста */
        .footer-info {
            margin-top: 40px;
            text-align: center;
        }

        .cta-text {
            font-size: 18px;
            font-weight: bold;
            color: #000;
            margin-bottom: 8px;
        }

        .hours-text {
            font-size: 15px;
            color: #666;
            margin: 0;
        }
    </style>
</head>
<body>

    <main class="wrapper">
        <header>
            <!-- Если у вас есть файл логотипа, укажите его имя вместо logo.png -->
            <img src="logo.png" alt="Dress Down" class="logo" onerror="this.style.display='none'">
            <h1 class="headline-text">Работа в Европе</h1>
            <p class="message-text">Рекрутинговое агентство по набору и подготовке персонала</p>
        </header>

        <div class="button-section">
            <!-- Укажите свои реальные ссылки в href -->
            <a href="https://t.me" class="button-shape tg-color">Написать в Telegram</a>
            <a href="https://wa.me" class="button-shape wa-color">Написать в WhatsApp</a>
        </div>

        <div class="footer-info">
            <p class="cta-text">Оставь заявку и получи бесплатную консультацию!</p>
            <p class="hours-text">Часы работы: с 09:00 до 18:00</p>
        </div>
    </main>

</body>
</html>