#section5 {
    width: 100%;
    height: 601px;
    padding: 96px 0;
    background-color: #143CD2;
}

.section5-content {
    display: flex;
    max-width: 1600px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.section5-content h2 {
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: 'Pretendard-ExtraBold', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section5-content p {
    align-self: stretch;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.qr-code-container {
    width: 208px;
    height: 208px;
    display: flex;
    padding: 24px;
    background-color: #FFF;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    margin: 48px 0;
}

.qr-code-container img {
    width: 160px;
    height: 160px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.store-button {
    height: 48px;
    flex-shrink: 0;
}

.download-button {
    display: none;
}

@media (max-width: 1079px) {
    #section5 {
        height: fit-content;
        padding: 48px 20px;
    }

    .section5-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .section5-content p {
        font-size: 16px;
    }

    .qr-code-container {
        display: none;
    }

    .store-buttons {
        gap: 8.5px;
        margin: 24px 0;
    }

    .store-button {
        height: 32px;
    }

    .download-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 48px;
        border: none;
        border-radius: 24px;
        font-size: 18px;
        font-weight: 700;
        color: #143CD2;
        background-color: #ffffff;

    }
}