@font-face {
    font-family: 'PT Root UI';
    src: url('fonts/PT_Root UI_Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'PT Root UI';
    src: url('fonts/PT_Root UI_Bold.ttf') format('truetype');
    font-weight: 700;
}

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

body {
    font-family: 'PT Root UI', -apple-system, BlinkMacSystemFont,
        'Segoe UI', sans-serif;
    background-color: #EBEEF1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 60px 80px;
    gap: 40px;
}

.content {
    flex: 1;
    max-width: 520px;
}

.badge {
    display: inline-block;
    padding: 18px 51px;
    border: 2px solid #D1D5DB;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
    color: #1F2937;
    background: transparent;
    margin-bottom: 40px;
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 60px;
}

.button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2AB157;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #239A4A;
    transform: translateY(-2px);
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

/* Планшеты */
@media (max-width: 1024px) {
    .container {
        padding: 40px;
    }

    h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .image img {
        max-width: 400px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .content {
        order: 1;
        max-width: 100%;
    }

    .image {
        order: 2;
        margin-top: 20px;
    }

    .image img {
        max-width: 280px;
    }

    h1 {
        font-size: 36px;
    }

    h1 br {
        display: none;
    }

    .badge {
        padding: 15px 41px;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .button {
        padding: 16px 40px;
        font-size: 18px;
    }
}

/* Маленькие мобильные */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .image img {
        max-width: 220px;
    }
}