.body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header {
    text-align: left;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.header-logo img {
    margin-right: 10px;
    width: 30px;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    flex-wrap: wrap;
    height: 85vh;
}

.content{
    display: flex;
    padding: 5px;
    width: 100%;
    gap: 10px;
    justify-content: center;
}

.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    gap: 8px;
}

.content-right {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.titles{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.headline {
    font-size: 30px;
    display: none;
}

.headline-mobile{
    align-items: center;
    justify-content: flex-end;
    font-size: 42px;
    display: flex;
    text-align: right;
}

.sub-headline {
    font-size: 18px;
    display: none;
    justify-content: flex-end;
}

.app-image {
    width: 100%;
    max-width: 270px;
    border-radius: 15px;
    margin-top: 20px; /* Отступ от кнопки */
}

.store-logo {
    width: 150px;
    margin-bottom: 20px; /* Отступ от текста */
}

.download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007AFF;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.policy-container {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.policy-link {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-size: 16px;
}

.policy-link:hover {
    color: #007AFF;
}
.sub-headline-mobile{
    display: flex;
    font-size: 20px;
    justify-content: flex-end;
}

/* desktop */
@media (min-width: 1024px) {
    .contact-link {
        font-size: 11px;
    }
    .policy-link {
        font-size: 11px;
    }
    .policy-container {
        padding-top: 0px;
        padding-bottom: 2px;
    }
    .store-logo {
        width: 150px;
    }
    .content{
        padding-left: 20px;
        padding-left: 20px;
    }
    .header-logo{
        font-size: 16px;
    }
    .header-logo img {
        margin-right: 10px;
        width: 30px;
    }
    .sub-headline-mobile{
        display: none;
    }
    .header {
        justify-content: start;
    }

    .headline {
        font-size: 60px;
        display: flex;
    }
    .headline-mobile{
        display: none;
    }
    .contact-container{
        flex-direction: row;
        gap: 20px;
    }
    .download-button {
        justify-content: flex-end;
    }
    .sub-headline{
        display: flex;
    }

    .content-left{
        gap: 12px;
    }

    .main-content{
        padding: 20px;
    }

    .app-image {
        width: 200px;
        border-radius: 15px;
        margin-top: 20px; /* Отступ от кнопки */
    }

  }