.download-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 4%;
    background-color: var(--dark-bg);
    width: 100%;
}

.text-block {
    flex: 1;
    min-width: 300px;
}

.text-block h1 {
    color: var(--text-light);
    font-size: 2.9rem;
    margin-bottom: 10px;
}

.text-block p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.app-name {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 180px;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 10px 65px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    margin: 20px;
}

.store-button img {
    height: 28px;
    margin-right: 10px;
}

.image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-block img {
    max-width: 100%;
    height: auto;
}


.value-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    flex-wrap: wrap;
    background-color: var(--dark-bg);
    margin: 0 auto;
}

.value-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.value-left img {
    max-width: 100%;
    height: auto;
}

.value-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: right;
}

.value-right h2 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.value-right p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .download-section {
        flex-direction: column;
        text-align: center;
    }

    .button-group {
        justify-content: center;
    }

    .text-block {
        margin-top: 25%;
    }

    .text-block h1 {
        font-size: 1.9em;
    }

    .store-button {
        width: 150px;
        font-size: 12px;
    }

    .button-group {
        display: none;
    }

    .value-section {
        flex-direction: column;
        text-align: center;
        display: none;
    }

    .value-right {
        padding-top: 30px;
    }

}
