#section4 {
    width: 100%;
    height: 601px;
    background-color: #DFEBFF;
    background-image: url('/images/background-map.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 96px;
    position: relative;
    overflow: hidden;
    /*mask-image: linear-gradient(to right, rgba(223, 235, 255, 0) 0%, rgba(223, 235, 255, 1) 20%, rgba(223, 235, 255, 1) 80%, rgba(223, 235, 255, 0) 100%);*/
}

.section4-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 642px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.coming-soon-tag {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Pretendard', sans-serif;
    color: #143CD2;
    border: 1px solid #143CD2;
    border-radius: 24px;
}

.section4-title {
    display: flex;
    color: #262D39;
    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;
}

.section4-subtitle {
    color: rgba(38, 45, 57, 0.72);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.section4-subtitle2 {
    color: rgba(38, 45, 57, 0.52);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.flags-container {
    display: flex;
    gap: 24px;
    overflow: hidden;
    white-space: nowrap;
    width: 100%; /* 전체 너비를 차지하도록 설정 */
    padding: 0 24px; /* 좌우 여백 추가 */
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    margin-top: 48px;
}

.flag {
    display: flex;
    width: 120px;
    height: 120px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background-color: #FFFFFF; /* 흰색 원 */
    border-radius: 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
}

.emoji {
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Pretendard, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 76.8px */
}

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

    .section4-content {
        width: 100%;
        gap: 8px;
    }

    .coming-soon-tag {
        font-size: 12px;
        padding: 8px 12px;
        height: 32px;
    }

    .section4-title {
        font-size: 24px;
    }

    .section4-subtitle {
        font-size: 16px;
    }

    .section4-subtitle2 {
        font-size: 16px;
    }

    .flags-container {
        margin-top: 24px;
    }

    .flag {
        width: 64px;
        height: 64px;
        border-radius: 32px;
    }

    .emoji {
        color: #000;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: Pretendard;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; /* 38.4px */
    }
}