Загрузка данных


Лови код. Сделал всё в одном файле (HTML + CSS), чтобы тебе было удобнее сразу открыть в браузере и посмотреть результат. Дизайн сверстан с помощью Flexbox, так что он будет адаптивным (нормально смотреться и на ПК, и на телефоне, как на твоем мокапе).
```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>
        /* Базовые настройки */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #111;
            display: flex;
            justify-content: center;
        }

        /* Контейнер, имитирующий экран */
        .container {
            width: 100%;
            max-width: 1200px;
            background-color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }

        /* Шапка сайта */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 50px;
            border-bottom: 1px solid #eee;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #111;
        }

        .logo-icon {
            font-size: 32px;
            font-weight: 800;
            color: #1a4f66; /* Темно-синий */
            letter-spacing: -2px;
        }

        .logo-icon span {
            color: #d35400; /* Оранжевый */
        }

        .logo-text {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.1;
        }

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav a {
            text-decoration: none;
            color: #111;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: #d35400;
        }

        /* Главный блок (Hero) */
        .hero {
            text-align: center;
            padding: 100px 20px;
            background-color: #fbfbfc;
            border-bottom: 1px solid #eee;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .btn {
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            color: #111;
            background-color: transparent;
            border: 2px solid #111;
            border-radius: 8px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: #111;
            color: #fff;
        }

        /* Блок с услугами и контактами */
        .info-section {
            display: flex;
            justify-content: space-around;
            padding: 80px 50px;
            background-color: #ffffff;
        }

        .info-block {
            max-width: 400px;
        }

        .info-block h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .services-list {
            list-style-type: none;
        }

        .services-list li {
            font-size: 18px;
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }

        .services-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #111;
            font-weight: bold;
        }

        .contact-details p {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .logo-small {
            margin-top: 20px;
            font-size: 28px;
            font-weight: 800;
            color: #1a4f66;
            letter-spacing: -2px;
        }

        .logo-small span {
            color: #d35400;
        }

        /* Адаптив для мобильных (как на телефоне в мокапе) */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }
            
            .hero h1 {
                font-size: 36px;
            }

            .info-section {
                flex-direction: column;
                gap: 50px;
                padding: 40px 20px;
                align-items: center;
                text-align: center;
            }

            .services-list li::before {
                display: none; /* Убираем точки для центрирования на мобилке */
            }
            
            .services-list li {
                padding-left: 0;
            }
        }
    </style>
</head>
<body>

    <div class="container">
        <header class="header">
            <a href="#" class="logo">
                <span class="logo-icon">M<span>S</span></span>
                <span class="logo-text">МОДЕРН<br>СТРОЙ</span>
            </a>
            <nav class="nav">
                <a href="#">ГЛАВНАЯ</a>
                <a href="#">УСЛУГИ</a>
                <a href="#">КОНТАКТЫ</a>
            </nav>
        </header>

        <main>
            <section class="hero">
                <h1>СТРОИТЕЛЬСТВО<br>И РЕМОНТ</h1>
                <button class="btn">ПОДАТЬ</button>
            </section>

            <section class="info-section">
                <div class="info-block">
                    <h2>НАШИ УСЛУГИ</h2>
                    <ul class="services-list">
                        <li>Проектирование</li>
                        <li>Строительство</li>
                        <li>Ремонт</li>
                    </ul>
                </div>
                <div class="info-block contact-details">
                    <h2>КОНТАКТЫ</h2>
                    <p>+7 (923) 455-69-00</p>
                    <p>email@modernstroy.ru</p>
                    <div class="logo-small">M<span>S</span></div>
                </div>
            </section>
        </main>
    </div>

</body>
</html>

```